_Application3.CacheSolution 方法 (String)

命名空间:  Microsoft.Office.Interop.InfoPath.SemiTrust
程序集:  Microsoft.Office.Interop.InfoPath.SemiTrust(位于 Microsoft.Office.Interop.InfoPath.SemiTrust.dll 中)

语法

声明
Sub CacheSolution ( _
    bstrSolutionURI As String _
)
用法
Dim instance As _Application3
Dim bstrSolutionURI As String

instance.CacheSolution(bstrSolutionURI)
void CacheSolution(
    string bstrSolutionURI
)

参数

  • bstrSolutionURI
    类型:System.String

    指定表单模板的统一资源标识符 (URI)。可以将此参数指定为表单定义 (.xsf) 文件或表单模板 (.xsn) 文件。

实现

_Application2.CacheSolution(String)

备注

如果当前在缓存中存在的表单模板与发布位置的表单模板匹配,则不会发生缓存操作。如果计算机处于脱机状态且表单已位于缓存中,则保留缓存且不进行更新。

重要

只能由从表单模板打开的表单访问此成员,已使用"表单选项"对话框"安全和信任"类别将该模板配置为以完全信任状态运行。此成员要求直接调用方的完全信任并且不能由部分信任的代码使用。有关更多信息,请参阅 MSDN 上的"使用部分信任的代码中的库"。

示例

在以下示例中,CacheFormTemplate 自定义函数在 forms 数组中遍历指定的每个表单模板的位置,并将该值传递给 CacheSolution 方法进行求值。

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);
    }
}

另请参阅

引用

_Application3 接口

_Application3 成员

CacheSolution 重载

Microsoft.Office.Interop.InfoPath.SemiTrust 命名空间