_ExternalApplication2.UnregisterSolution 方法 (String)

卸载指定的表单模板。

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

语法

声明
Sub UnregisterSolution ( _
    bstrSolutionURI As String _
)
用法
Dim instance As _ExternalApplication2
Dim bstrSolutionURI As String

instance.UnregisterSolution(bstrSolutionURI)
void UnregisterSolution(
    string bstrSolutionURI
)

参数

  • bstrSolutionURI
    类型:System.String

    该字符串值指定表单模板的统一资源标识符 (URI)。

实现

_ExternalApplication.UnregisterSolution(String)

备注

如果无法撤消对表单模板的注册,则 UnregisterSolution 方法将返回错误。

重要

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

示例

在以下示例(用 C# 编程语言编写)中,ExternalApplication 对象的 UnregisterSolution 方法用于卸载表单模板:

private void UninstallForm()
{
 ExternalApplication infoPath = new ExternalApplicationClass();

 infoPath.UnregisterSolution(@"C:\My Forms\MyFormTemplate.xsn");
}

备注

上面的示例假定正在使用 Microsoft.Office.Interop.InfoPath 命名空间并引用 Microsoft InfoPath 3.0 类型库。

另请参阅

引用

_ExternalApplication2 接口

_ExternalApplication2 成员

UnregisterSolution 重载

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