GlobalObject 构造函数
初始化 GlobalObject 类的新实例。
命名空间: Microsoft.VisualStudio.Shell.Design
程序集: Microsoft.VisualStudio.Shell.Design(在 Microsoft.VisualStudio.Shell.Design.dll 中)
语法
声明
Protected Sub New ( _
objectType As Type, _
objectName As String _
)
protected GlobalObject(
Type objectType,
string objectName
)
参数
- objectType
类型:System.Type
全局对象的 Type 。
- objectName
类型:System.String
包含全局对象的名称 String 。
异常
异常 | 条件 |
---|---|
ArgumentNullException | objectType 为 nullnull 引用(在 Visual Basic 中为 Nothing)。 |
备注
使用 GlobalObjectService 类的 GetGlobalObjects 方法,即,,因为全局对象通常创建 GlobalObject 构造函数不是公共可访问的。此结构,可以跟踪类型的更改、添加和删除全局对象。
此构造函数将 Name 属性设置为 objectName 参数。这是对象的名称,因为它显示给设计时环境的用户,应遵循标识符的常见规则。此名称。 System.ComponentModel.Design.Serialization.INameCreationService 筛选设计器以确保其符合语言限制。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualStudio.Shell.Design 命名空间
System.ComponentModel.Design.Serialization.INameCreationService