_Application3.GetSolutionURI - Méthode
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.
Espace de noms : Microsoft.Office.Interop.InfoPath
Assembly : Microsoft.Office.Interop.InfoPath (dans Microsoft.Office.Interop.InfoPath.dll)
Syntaxe
'Déclaration
Function GetSolutionURI ( _
bstrCacheID As String _
) As String
'Utilisation
Dim instance As _Application3
Dim bstrCacheID As String
Dim returnValue As String
returnValue = instance.GetSolutionURI(bstrCacheID)
string GetSolutionURI(
string bstrCacheID
)
Paramètres
bstrCacheID
Type : System.StringUne chaîne qui identifie le modèle de formulaire dans le cache de formulaires InfoPath local.
Valeur renvoyée
Type : System.String
L'URL ou l'UNC de l'emplacement publié du modèle de formulaire.
Remarques
La valeur à passer en tant que paramètre bstCacheID peut être identifiée à partir de l'emplacement suivant dans le système de fichiers :
%USERPROFILE%\Local Settings\Application Data\Microsoft\InfoPath\FormCache1\foldername\cacheID
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.
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$"))