_Application3.GetSolutionURI(String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient l'URL (Uniform Resource Locator) ou l'emplacement UNC (Universal Naming Convention) d'un modèle de formulaire à partir de l'ID de cache local.
public:
System::String ^ GetSolutionURI(System::String ^ bstrCacheID);
public string GetSolutionURI (string bstrCacheID);
abstract member GetSolutionURI : string -> string
Public Function GetSolutionURI (bstrCacheID As String) As String
Paramètres
- bstrCacheID
- String
Une chaîne qui identifie le modèle de formulaire dans le cache de formulaires InfoPath local.
Retours
L'URL ou l'UNC de l'emplacement publié du modèle de formulaire.
Exemples
Dans l'exemple suivant, une valeur d'ID de cache est passée à la méthode GetSolutionURI pour afficher l'emplacement publié du modèle de formulaire.
Microsoft.Office.Interop.InfoPath.Application app =
new Microsoft.Office.Interop.InfoPath.ApplicationClass();
MessageBox.Show(app.GetFormSolutionURI(
"37d5ef02fa44a797$"));
Dim app As New Microsoft.Office.Interop.InfoPath.ApplicationClass
MessageBox.Show(app.GetFormSolutionURI( _
"37d5ef02fa44a797$"))
Dans l'exemple suivant, une valeur d'ID de cache est passée à la méthode GetSolutionURI pour afficher l'emplacement publié du modèle de formulaire.
Microsoft.Office.Interop.InfoPath.Application app =
new Microsoft.Office.Interop.InfoPath.ApplicationClass();
MessageBox.Show(app.GetFormSolutionURI(
"37d5ef02fa44a797$"));
Dim app As New Microsoft.Office.Interop.InfoPath.ApplicationClass
MessageBox.Show(app.GetFormSolutionURI( _
"37d5ef02fa44a797$"))
Remarques
La valeur à passer comme bstCacheID
paramètre peut être identifiée à l’emplacement suivant dans le système de fichiers :
%USERPROFILE%\Local Settings\Application Data\Microsoft\InfoPath\FormCache1\<span class="placeholder">foldername</span>\<span class="placeholder">cacheID</span>
Où foldername est un nom aléatoire attribué au cache des formulaires d'un utilisateur et cacheID est le nom du dossier contenant le modèle de formulaire mis en cache et la valeur de l'ID du cache.