VirtualTypeBuilder.FieldInfoCollection.Add 方法 (String, Type, array<Attribute[], FieldAttributes)
将 FieldInfo 添加到集合的末尾。
命名空间: Microsoft.VisualStudio.Shell.Design
程序集: Microsoft.VisualStudio.Shell.Design(在 Microsoft.VisualStudio.Shell.Design.dll 中)
语法
声明
Public Function Add ( _
name As String, _
fieldType As Type, _
attributes As Attribute(), _
fieldAttributes As FieldAttributes _
) As Integer
public int Add(
string name,
Type fieldType,
Attribute[] attributes,
FieldAttributes fieldAttributes
)
参数
- name
类型:System.String
要添加的字段的名称。
- fieldType
类型:System.Type
字段的类型。
- attributes
类型:array<System.Attribute[]
此参数用于正确配置类成员。Add 只接受放入 AccessMask 或 ScopeMask 类别 MemberAttributes 的值。
- fieldAttributes
类型:System.Reflection.FieldAttributes
此参数对该成员指定其他字段特性。默认字段特性是 Public。当前支持的唯一字段特性是 Public 和 Static。
返回值
类型:System.Int32
已添加值处的索引。
异常
异常 | 条件 |
---|---|
ArgumentNullException | name 或 fieldType 或一个元素在 attributes 是 nullnull 引用(在 Visual Basic 中为 Nothing)。 attributes 可能是 nullnull 引用(在 Visual Basic 中为 Nothing)。 |
ArgumentException | fieldType 不是运行时类型 - 或 - 除了 Public 和 Static外,fieldAttributes 不包含 Public 不包含设置的位或特性,通过 attributes 参数不能应用于字段。 |
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。