DefaultRegistryRootAttribute 构造函数
初始化与特定的注册表根的新 DefaultRegistryRootAttribute 对象。
命名空间: Microsoft.VisualStudio.Shell
程序集: Microsoft.VisualStudio.Shell.11.0(在 Microsoft.VisualStudio.Shell.11.0.dll 中)
语法
声明
Public Sub New ( _
root As String _
)
public DefaultRegistryRootAttribute(
string root
)
参数
- root
类型:System.String
默认的注册表根使用了注册 VSPackage 信息。
异常
异常 | 条件 |
---|---|
ArgumentNullException | ,如果根参数为 null,则构造函数引发 ArgumentNullException 。 |
示例
下面 Visual C# 代码将 DefaultRegistryRoot 特性应用于名为 MyVSPackage 的 VSPackage。
using Microsoft.VisualStudio.Shell;
using MSVSIP = Microsoft.VisualStudio.Shell;
[MSVSIP.DefaultRegistryRoot("Software\\Microsoft\\VisualStudio\\8.0Exp")]
public class MyVSPackage : MSVSIP.Package {}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。