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 为 nulla null reference (Nothing in Visual Basic)。

备注

使用最后的更新生效策略来解决冲突。

示例

下面的代码示例演示如何使用 AttributeCallbackBuilder 类将特性添加到类型中。 此代码示例摘自为 AttributeCallbackBuilder 类提供的一个更大的示例。

callbackBuilder.AddCustomAttributes(
    new DefaultPropertyAttribute("Content"));

.NET Framework 安全性

请参见

参考

AttributeCallbackBuilder 类

AddCustomAttributes 重载

Microsoft.Windows.Design.Metadata 命名空间

AttributeTableBuilder

AddCallback

AttributeTable