AttributeCallbackBuilder.AddCustomAttributes 方法 (array<Attribute )
将指定特性的内容添加到此生成器。
命名空间: Microsoft.Windows.Design.Metadata
程序集: Microsoft.Windows.Design.Extensibility(在 Microsoft.Windows.Design.Extensibility.dll 中)
语法
声明
Public Sub AddCustomAttributes ( _
ParamArray attributes As Attribute() _
)
public void AddCustomAttributes(
params Attribute[] attributes
)
public:
void AddCustomAttributes(
... array<Attribute^>^ attributes
)
member AddCustomAttributes :
attributes:Attribute[] -> unit
public function AddCustomAttributes(
... attributes : Attribute[]
)
参数
- attributes
类型:array<System.Attribute[]
要添加的新特性的数组。
异常
异常 | 条件 |
---|---|
ArgumentNullException | attributes 为 nullnull 引用(在 Visual Basic 中为 Nothing)。 |
备注
使用最后的更新生效策略来解决冲突。
示例
下面的代码示例演示如何使用 AttributeCallbackBuilder 类将特性添加到类型中。 此代码示例摘自为 AttributeCallbackBuilder 类提供的一个更大的示例。
callbackBuilder.AddCustomAttributes(
new DefaultPropertyAttribute("Content"));
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。