AttributeTableBuilder.AddCustomAttributes 方法 (Type, String, array<Attribute[])
[本文档仅供预览,在以后的发行版中可能会发生更改。包含的空白主题用作占位符。]
将特性添加到具有指定名称的成员。
命名空间: Microsoft.Windows.Design.Metadata
程序集: Microsoft.Windows.Design.Extensibility(在 Microsoft.Windows.Design.Extensibility.dll 中)
语法
声明
Public Sub AddCustomAttributes ( _
ownerType As Type, _
memberName As String, _
ParamArray attributes As Attribute() _
)
public void AddCustomAttributes(
Type ownerType,
string memberName,
params Attribute[] attributes
)
public:
void AddCustomAttributes(
Type^ ownerType,
String^ memberName,
... array<Attribute^>^ attributes
)
member AddCustomAttributes :
ownerType:Type *
memberName:string *
attributes:Attribute[] -> unit
public function AddCustomAttributes(
ownerType : Type,
memberName : String,
... attributes : Attribute[]
)
参数
- ownerType
类型:System.Type
成员所属的类型。
- memberName
类型:System.String
要为其添加特性的成员。
- attributes
类型:array<System.Attribute[]
要添加的特性。
异常
异常 | 条件 |
---|---|
ArgumentNullException | ownerType、memberName 或 attributes 为 nulla null reference (Nothing in Visual Basic)。 |
备注
该成员可以是属性或事件。 用户查询指定属性或事件上的特性时,将按需计算成员。 仅支持属性和事件成员。 所有其他属性都将被忽略。
示例
下面的代码示例演示如何将特性添加到成员中。 此代码示例摘自为 AttributeTableBuilder 类提供的一个更大的示例。
' Apply the ReadOnlyAttribute to the Background property
' of the Button class.
builder.AddCustomAttributes( _
GetType(Button), _
"Background", _
New ReadOnlyAttribute(True))
// Apply the ReadOnlyAttribute to the Background property
// of the Button class.
builder.AddCustomAttributes(
typeof(Button),
"Background",
new ReadOnlyAttribute(true));
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。