VirtualTypeBuilder.PropertyInfoCollection.Add 方法 (String, Type, Boolean, array<Type[], array<Attribute , MethodAttributes)
将 PropertyInfo 添加到集合的末尾。
命名空间: Microsoft.VisualStudio.Shell.Design
程序集: Microsoft.VisualStudio.Shell.Design(在 Microsoft.VisualStudio.Shell.Design.dll 中)
语法
声明
Public Function Add ( _
name As String, _
propertyType As Type, _
readOnly As Boolean, _
parameterTypes As Type(), _
attributes As Attribute(), _
methodAttributes As MethodAttributes _
) As Integer
public int Add(
string name,
Type propertyType,
bool readOnly,
Type[] parameterTypes,
Attribute[] attributes,
MethodAttributes methodAttributes
)
参数
- name
类型:System.String
要添加的属性的名称。
- propertyType
类型:System.Type
属性的类型。
- readOnly
类型:System.Boolean
确定此属性是否是只读还是可读/写的。
- parameterTypes
类型:array<System.Type[]
- attributes
类型:array<System.Attribute[]
此参数用于正确配置类成员。添加只接受放入 AccessMask 或 ScopeMask 类别 MemberAttributes 的值。
- methodAttributes
类型:System.Reflection.MethodAttributes
为此成员指定附加事件属性。默认方法属性是 Public。现在支持的唯一方法是属性 Public 和 Static。
返回值
类型:System.Int32
已添加值处的索引。
异常
异常 | 条件 |
---|---|
ArgumentNullException | name 为 nullnull 引用(在 Visual Basic 中为 Nothing)。 - 或 - propertyType 为 nullnull 引用(在 Visual Basic 中为 Nothing) - 或 - 在 attributes 的一个元素是 nullnull 引用(在 Visual Basic 中为 Nothing)。 - 或 - 在 paramTypes 的一个元素是 nullnull 引用(在 Visual Basic 中为 Nothing)。 attributes 和 paramTypes 可能是 nullnull 引用(在 Visual Basic 中为 Nothing)。 |
ArgumentException | propertyType 不是运行时类型。 |
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。