CustomAttributeExtensions.GetCustomAttributes Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Recupera uma coleção de atributos personalizados que são aplicados a um elemento especificado.
Sobrecargas
GetCustomAttributes(ParameterInfo, Type, Boolean) |
Recupera uma coleção de atributos personalizados de um tipo especificado aplicado a um parâmetro especificado e opcionalmente inspeciona os ancestrais desse parâmetro. |
GetCustomAttributes(MemberInfo, Type, Boolean) |
Recupera uma coleção de atributos personalizados de um tipo especificado aplicado a um membro especificado e opcionalmente inspeciona os ancestrais desse membro. |
GetCustomAttributes(ParameterInfo, Type) |
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um parâmetro especificado. |
GetCustomAttributes(ParameterInfo, Boolean) |
Recupera uma coleção de atributos personalizados aplicados a um parâmetro especificado e opcionalmente inspeciona os ancestrais desse parâmetro. |
GetCustomAttributes(Module, Type) |
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um módulo especificado. |
GetCustomAttributes(MemberInfo, Type) |
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um membro especificado. |
GetCustomAttributes(MemberInfo, Boolean) |
Recupera uma coleção de atributos personalizados aplicado a um membro especificado e opcionalmente inspeciona os ancestrais desse membro. |
GetCustomAttributes(Assembly, Type) |
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um assembly especificado. |
GetCustomAttributes(ParameterInfo) |
Recupera uma coleção de atributos personalizados que são aplicados a um parâmetro especificado. |
GetCustomAttributes(Module) |
Recupera uma coleção de atributos personalizados que são aplicados a um módulo especificado. |
GetCustomAttributes(MemberInfo) |
Recupera uma coleção de atributos personalizados que são aplicados a um membro especificado. |
GetCustomAttributes(Assembly) |
Recupera uma coleção de atributos personalizados que são aplicados a um assembly especificado. |
GetCustomAttributes<T>(ParameterInfo, Boolean) |
Recupera uma coleção de atributos personalizados de um tipo especificado aplicado a um parâmetro especificado e opcionalmente inspeciona os ancestrais desse parâmetro. |
GetCustomAttributes<T>(MemberInfo, Boolean) |
Recupera uma coleção de atributos personalizados de um tipo especificado aplicado a um membro especificado e opcionalmente inspeciona os ancestrais desse membro. |
GetCustomAttributes<T>(ParameterInfo) |
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um parâmetro especificado. |
GetCustomAttributes<T>(MemberInfo) |
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um membro especificado. |
GetCustomAttributes<T>(Assembly) |
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um assembly especificado. |
GetCustomAttributes<T>(Module) |
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um módulo especificado. |
GetCustomAttributes(ParameterInfo, Type, Boolean)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado aplicado a um parâmetro especificado e opcionalmente inspeciona os ancestrais desse parâmetro.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::ParameterInfo ^ element, Type ^ attributeType, bool inherit);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.ParameterInfo element, Type attributeType, bool inherit);
static member GetCustomAttributes : System.Reflection.ParameterInfo * Type * bool -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As ParameterInfo, attributeType As Type, inherit As Boolean) As IEnumerable(Of Attribute)
Parâmetros
- element
- ParameterInfo
O parâmetro a ser inspecionado.
- attributeType
- Type
O tipo de atributo a ser pesquisado.
- inherit
- Boolean
true
para inspecionar os ancestrais de element
; caso contrário, false
.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a attributeType
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
ou attributeType
é null
.
attributeType
não é derivado de Attribute.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes(MemberInfo, Type, Boolean)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado aplicado a um membro especificado e opcionalmente inspeciona os ancestrais desse membro.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::MemberInfo ^ element, Type ^ attributeType, bool inherit);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.MemberInfo element, Type attributeType, bool inherit);
static member GetCustomAttributes : System.Reflection.MemberInfo * Type * bool -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As MemberInfo, attributeType As Type, inherit As Boolean) As IEnumerable(Of Attribute)
Parâmetros
- element
- MemberInfo
O membro a ser inspecionado.
- attributeType
- Type
O tipo de atributo a ser pesquisado.
- inherit
- Boolean
true
para inspecionar os ancestrais de element
; caso contrário, false
.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a attributeType
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
ou attributeType
é null
.
attributeType
não é derivado de Attribute.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes(ParameterInfo, Type)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um parâmetro especificado.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::ParameterInfo ^ element, Type ^ attributeType);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.ParameterInfo element, Type attributeType);
static member GetCustomAttributes : System.Reflection.ParameterInfo * Type -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As ParameterInfo, attributeType As Type) As IEnumerable(Of Attribute)
Parâmetros
- element
- ParameterInfo
O parâmetro a ser inspecionado.
- attributeType
- Type
O tipo de atributo a ser pesquisado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a attributeType
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
ou attributeType
é null
.
attributeType
não é derivado de Attribute.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes(ParameterInfo, Boolean)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados aplicados a um parâmetro especificado e opcionalmente inspeciona os ancestrais desse parâmetro.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::ParameterInfo ^ element, bool inherit);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.ParameterInfo element, bool inherit);
static member GetCustomAttributes : System.Reflection.ParameterInfo * bool -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As ParameterInfo, inherit As Boolean) As IEnumerable(Of Attribute)
Parâmetros
- element
- ParameterInfo
O parâmetro a ser inspecionado.
- inherit
- Boolean
true
para inspecionar os ancestrais de element
; caso contrário, false
.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
, se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes(Module, Type)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um módulo especificado.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::Module ^ element, Type ^ attributeType);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.Module element, Type attributeType);
static member GetCustomAttributes : System.Reflection.Module * Type -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As Module, attributeType As Type) As IEnumerable(Of Attribute)
Parâmetros
- element
- Module
O módulo a ser inspecionado.
- attributeType
- Type
O tipo de atributo a ser pesquisado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a attributeType
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
ou attributeType
é null
.
attributeType
não é derivado de Attribute.
Aplica-se a
GetCustomAttributes(MemberInfo, Type)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um membro especificado.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::MemberInfo ^ element, Type ^ attributeType);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.MemberInfo element, Type attributeType);
static member GetCustomAttributes : System.Reflection.MemberInfo * Type -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As MemberInfo, attributeType As Type) As IEnumerable(Of Attribute)
Parâmetros
- element
- MemberInfo
O membro a ser inspecionado.
- attributeType
- Type
O tipo de atributo a ser pesquisado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a attributeType
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
ou attributeType
é null
.
attributeType
não é derivado de Attribute.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes(MemberInfo, Boolean)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados aplicado a um membro especificado e opcionalmente inspeciona os ancestrais desse membro.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::MemberInfo ^ element, bool inherit);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.MemberInfo element, bool inherit);
static member GetCustomAttributes : System.Reflection.MemberInfo * bool -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As MemberInfo, inherit As Boolean) As IEnumerable(Of Attribute)
Parâmetros
- element
- MemberInfo
O membro a ser inspecionado.
- inherit
- Boolean
true
para inspecionar os ancestrais de element
; caso contrário, false
.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
que correspondem aos critérios especificados ou uma coleção vazia se esses atributos não existirem.
Exceções
element
é null
.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes(Assembly, Type)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um assembly especificado.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::Assembly ^ element, Type ^ attributeType);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.Assembly element, Type attributeType);
static member GetCustomAttributes : System.Reflection.Assembly * Type -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As Assembly, attributeType As Type) As IEnumerable(Of Attribute)
Parâmetros
- element
- Assembly
O assembly a ser inspecionado.
- attributeType
- Type
O tipo de atributo a ser pesquisado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a attributeType
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
ou attributeType
é null
.
attributeType
não é derivado de Attribute.
Aplica-se a
GetCustomAttributes(ParameterInfo)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados que são aplicados a um parâmetro especificado.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::ParameterInfo ^ element);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.ParameterInfo element);
static member GetCustomAttributes : System.Reflection.ParameterInfo -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As ParameterInfo) As IEnumerable(Of Attribute)
Parâmetros
- element
- ParameterInfo
O parâmetro a ser inspecionado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
, se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes(Module)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados que são aplicados a um módulo especificado.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::Module ^ element);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.Module element);
static member GetCustomAttributes : System.Reflection.Module -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As Module) As IEnumerable(Of Attribute)
Parâmetros
- element
- Module
O módulo a ser inspecionado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
, se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.
Aplica-se a
GetCustomAttributes(MemberInfo)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados que são aplicados a um membro especificado.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::MemberInfo ^ element);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.MemberInfo element);
static member GetCustomAttributes : System.Reflection.MemberInfo -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As MemberInfo) As IEnumerable(Of Attribute)
Parâmetros
- element
- MemberInfo
O membro a ser inspecionado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
, se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes(Assembly)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados que são aplicados a um assembly especificado.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<Attribute ^> ^ GetCustomAttributes(System::Reflection::Assembly ^ element);
public static System.Collections.Generic.IEnumerable<Attribute> GetCustomAttributes (this System.Reflection.Assembly element);
static member GetCustomAttributes : System.Reflection.Assembly -> seq<Attribute>
<Extension()>
Public Function GetCustomAttributes (element As Assembly) As IEnumerable(Of Attribute)
Parâmetros
- element
- Assembly
O assembly a ser inspecionado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
, se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.
Aplica-se a
GetCustomAttributes<T>(ParameterInfo, Boolean)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado aplicado a um parâmetro especificado e opcionalmente inspeciona os ancestrais desse parâmetro.
public:
generic <typename T>
where T : Attribute[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<T> ^ GetCustomAttributes(System::Reflection::ParameterInfo ^ element, bool inherit);
public static System.Collections.Generic.IEnumerable<T> GetCustomAttributes<T> (this System.Reflection.ParameterInfo element, bool inherit) where T : Attribute;
static member GetCustomAttributes : System.Reflection.ParameterInfo * bool -> seq<'T (requires 'T :> Attribute)> (requires 'T :> Attribute)
<Extension()>
Public Function GetCustomAttributes(Of T As Attribute) (element As ParameterInfo, inherit As Boolean) As IEnumerable(Of T)
Parâmetros de tipo
- T
O tipo de atributo a ser pesquisado.
Parâmetros
- element
- ParameterInfo
O parâmetro a ser inspecionado.
- inherit
- Boolean
true
para inspecionar os ancestrais de element
; caso contrário, false
.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a T
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes<T>(MemberInfo, Boolean)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado aplicado a um membro especificado e opcionalmente inspeciona os ancestrais desse membro.
public:
generic <typename T>
where T : Attribute[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<T> ^ GetCustomAttributes(System::Reflection::MemberInfo ^ element, bool inherit);
public static System.Collections.Generic.IEnumerable<T> GetCustomAttributes<T> (this System.Reflection.MemberInfo element, bool inherit) where T : Attribute;
static member GetCustomAttributes : System.Reflection.MemberInfo * bool -> seq<'T (requires 'T :> Attribute)> (requires 'T :> Attribute)
<Extension()>
Public Function GetCustomAttributes(Of T As Attribute) (element As MemberInfo, inherit As Boolean) As IEnumerable(Of T)
Parâmetros de tipo
- T
O tipo de atributo a ser pesquisado.
Parâmetros
- element
- MemberInfo
O membro a ser inspecionado.
- inherit
- Boolean
true
para inspecionar os ancestrais de element
; caso contrário, false
.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a T
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes<T>(ParameterInfo)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um parâmetro especificado.
public:
generic <typename T>
where T : Attribute[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<T> ^ GetCustomAttributes(System::Reflection::ParameterInfo ^ element);
public static System.Collections.Generic.IEnumerable<T> GetCustomAttributes<T> (this System.Reflection.ParameterInfo element) where T : Attribute;
static member GetCustomAttributes : System.Reflection.ParameterInfo -> seq<'T (requires 'T :> Attribute)> (requires 'T :> Attribute)
<Extension()>
Public Function GetCustomAttributes(Of T As Attribute) (element As ParameterInfo) As IEnumerable(Of T)
Parâmetros de tipo
- T
O tipo de atributo a ser pesquisado.
Parâmetros
- element
- ParameterInfo
O parâmetro a ser inspecionado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a T
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes<T>(MemberInfo)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um membro especificado.
public:
generic <typename T>
where T : Attribute[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<T> ^ GetCustomAttributes(System::Reflection::MemberInfo ^ element);
public static System.Collections.Generic.IEnumerable<T> GetCustomAttributes<T> (this System.Reflection.MemberInfo element) where T : Attribute;
static member GetCustomAttributes : System.Reflection.MemberInfo -> seq<'T (requires 'T :> Attribute)> (requires 'T :> Attribute)
<Extension()>
Public Function GetCustomAttributes(Of T As Attribute) (element As MemberInfo) As IEnumerable(Of T)
Parâmetros de tipo
- T
O tipo de atributo a ser pesquisado.
Parâmetros
- element
- MemberInfo
O membro a ser inspecionado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a T
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.
O element
não é um construtor, método, propriedade, evento, tipo nem campo.
Um tipo de atributo personalizado não pode ser carregado.
Aplica-se a
GetCustomAttributes<T>(Assembly)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um assembly especificado.
public:
generic <typename T>
where T : Attribute[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<T> ^ GetCustomAttributes(System::Reflection::Assembly ^ element);
public static System.Collections.Generic.IEnumerable<T> GetCustomAttributes<T> (this System.Reflection.Assembly element) where T : Attribute;
static member GetCustomAttributes : System.Reflection.Assembly -> seq<'T (requires 'T :> Attribute)> (requires 'T :> Attribute)
<Extension()>
Public Function GetCustomAttributes(Of T As Attribute) (element As Assembly) As IEnumerable(Of T)
Parâmetros de tipo
- T
O tipo de atributo a ser pesquisado.
Parâmetros
- element
- Assembly
O assembly a ser inspecionado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a T
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.
Aplica-se a
GetCustomAttributes<T>(Module)
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
- Origem:
- CustomAttributeExtensions.cs
Recupera uma coleção de atributos personalizados de um tipo especificado que são aplicados a um módulo especificado.
public:
generic <typename T>
where T : Attribute[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<T> ^ GetCustomAttributes(System::Reflection::Module ^ element);
public static System.Collections.Generic.IEnumerable<T> GetCustomAttributes<T> (this System.Reflection.Module element) where T : Attribute;
static member GetCustomAttributes : System.Reflection.Module -> seq<'T (requires 'T :> Attribute)> (requires 'T :> Attribute)
<Extension()>
Public Function GetCustomAttributes(Of T As Attribute) (element As Module) As IEnumerable(Of T)
Parâmetros de tipo
- T
O tipo de atributo a ser pesquisado.
Parâmetros
- element
- Module
O módulo a ser inspecionado.
Retornos
Uma coleção dos atributos personalizados que são aplicados a element
e que correspondem a T
; se esses atributos não existirem, será uma coleção vazia.
Exceções
element
é null
.