Package.RegisterEditorFactory 方法
注册了 Visual Studio的版本工厂。
命名空间: Microsoft.VisualStudio.Shell
程序集: Microsoft.VisualStudio.Shell.11.0(在 Microsoft.VisualStudio.Shell.11.0.dll 中)
语法
声明
Protected Sub RegisterEditorFactory ( _
factory As IVsEditorFactory _
)
protected void RegisterEditorFactory(
IVsEditorFactory factory
)
参数
- factory
类型:Microsoft.VisualStudio.Shell.Interop.IVsEditorFactory
注册的编辑工厂。
异常
异常 | 条件 |
---|---|
ArgumentNullException | factory 为 nullnull 引用(在 Visual Basic 中为 Nothing)。 |
备注
注册 VSPackage 的版本工厂,执行以下步骤:
重写 Initialize 方法。在 Initialize 方法的实现中,调用 RegisterEditorFactory方法并通过编辑工厂的实例。
,在包中配置时,编辑工厂自动中注销。如果编辑工厂对象实现 IDisposable,其 Dispose 方法调用,在工厂中注销与 Visual Studio之后。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualStudio.Shell 命名空间