Sdílet prostřednictvím


_Application3.CacheSolution-Methode

Untersucht die Formularvorlage im Cache und aktualisiert sie ggf. von deren Veröffentlichungsort aus.

Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)

Syntax

'Declaration
<DispIdAttribute(14)> _
Sub CacheSolution ( _
    <InAttribute> bstrSolutionURI As String _
)
'Usage
Dim instance As _Application3
Dim bstrSolutionURI As String

instance.CacheSolution(bstrSolutionURI)
[DispIdAttribute(14)] 
void CacheSolution (
    [InAttribute] string bstrSolutionURI
)

Parameter

  • bstrSolutionURI
    Gibt den URI (Uniform Resource Identifier) der Formularvorlage an. Dieser Parameter kann als Formulardefinitionsdatei (XSF) oder als Formularvorlagendatei (XSN) angegeben werden.

Hinweise

Wenn die im Cache zurzeit enthaltene Formularvorlage der Formularvorlage am Veröffentlichungsort entspricht, erfolgt keine Zwischenspeicherung. Wenn sich der Computer im Offlinemodus befindet und das Formular bereits im Cache gespeichert ist, wird der Cache beibehalten und keine Aktualisierung vorgenommen.

Beispiel

private string[] _forms = 
{ 
@"\\MyServer\MyForms\MyForm.xsn", 
@"\\MyServer\MyForms\manifest.xsf" 
};

private void someFunction()
{
…
CacheFormTemplate(_forms);
…
}

private void CacheFormTemplate(string[] forms)
{ 
 foreach (string form in forms)
 {
  thisApplication.CacheSolution(form);
 }
}

Siehe auch

Referenz

_Application3-Schnittstelle
_Application3-Member
Microsoft.Office.Interop.InfoPath-Namespace