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


AttributeTable.GetCustomAttributes - метод (Type)

Возврат перечисления всех атрибутов, предоставляемых для заданного типа.

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

Синтаксис

'Декларация
Public Function GetCustomAttributes ( _
    type As Type _
) As IEnumerable
public IEnumerable GetCustomAttributes(
    Type type
)
public:
IEnumerable^ GetCustomAttributes(
    Type^ type
)
member GetCustomAttributes : 
        type:Type -> IEnumerable 
public function GetCustomAttributes(
    type : Type
) : IEnumerable

Параметры

  • type
    Тип: System.Type
    Тип, для которого получаются атрибуты уровня класса.

Возвращаемое значение

Тип: System.Collections.IEnumerable
Перечисление атрибутов.

Исключения

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

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

Заметки

Этот метод никогда не возвращает перечисление nullпустая ссылка (Nothing в Visual Basic).

Примеры

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

Dim attrs0 As IEnumerable = attributes.GetCustomAttributes(GetType(Button))
IEnumerable attrs0 = attributes.GetCustomAttributes(typeof(Button));

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

См. также

Ссылки

AttributeTable Класс

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

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

AttributeTableBuilder