Поделиться через


AttributeTableBuilder.AddCustomAttributes - метод (Type, array<Attribute[])

Добавление содержимого предоставляемых атрибутов к конструктору таблицы.

Пространство имен:  Microsoft.Windows.Design.Metadata
Сборка:  Microsoft.Windows.Design.Extensibility (в Microsoft.Windows.Design.Extensibility.dll)

Синтаксис

'Декларация
Public Sub AddCustomAttributes ( _
    type As Type, _
    ParamArray attributes As Attribute() _
)
public void AddCustomAttributes(
    Type type,
    params Attribute[] attributes
)
public:
void AddCustomAttributes(
    Type^ type, 
    ... array<Attribute^>^ attributes
)
member AddCustomAttributes : 
        type:Type * 
        attributes:Attribute[] -> unit 
public function AddCustomAttributes(
    type : Type, 
    ... attributes : Attribute[]
)

Параметры

  • type
    Тип: System.Type
    Тип, к которому добавляются атрибуты уровня класса.
  • attributes
    Тип: array<System.Attribute[]
    Новые атрибуты, добавляемые к типу type.

Исключения

Исключение Условие
ArgumentNullException

Значение параметра type или attributes — nullпустая ссылка (Nothing в Visual Basic).

Заметки

Для разрешения конфликтов применяется стратегия «побеждает последний». При создании большой таблицы атрибутов используйте метод AddCallback, чтобы отложить создание атрибутов до тех пор, пока они не потребуются.

Примеры

В следующем примере показано, как добавить атрибут к типу. Данный пример кода является частью большого примера, приведенного в описании класса AttributeTableBuilder.

builder.AddCustomAttributes( _
    GetType(Button), _
    New DefaultPropertyAttribute("Content"))
builder.AddCustomAttributes(
    typeof(Button),
    new DefaultPropertyAttribute("Content"));

Безопасность платформы .NET Framework

См. также

Ссылки

AttributeTableBuilder Класс

AddCustomAttributes - перегрузка

Microsoft.Windows.Design.Metadata - пространство имен

AttributeTable

AttributeCallbackBuilder