Método _Assembly.GetCustomAttributes (Type, Boolean)
Publicado: octubre de 2016
Proporciona objetos COM acceso independiente de la versión del GetCustomAttributes (método).
Espacio de nombres: System.Runtime.InteropServices
Ensamblado: mscorlib (en mscorlib.dll)
Sintaxis
object[] GetCustomAttributes(
Type attributeType,
bool inherit
)
array<Object^>^ GetCustomAttributes(
Type^ attributeType,
bool inherit
)
abstract GetCustomAttributes :
attributeType:Type *
inherit:bool -> Object[]
Function GetCustomAttributes (
attributeType As Type,
inherit As Boolean
) As Object()
Parámetros
attributeType
Type: System.TypeEl Type que los atributos personalizados que se va a devolver.
inherit
Type: System.BooleanEste argumento se omite para objetos de tipo Assembly.
Valor devuelto
Type: System.Object[]
Matriz de tipo Object que contiene los atributos personalizados para este ensamblado tal y como especifica attributeType.
Comentarios
Este método es para el acceso a las clases administradas desde código no administrado y no se debe llamar desde código administrado.
El GetCustomAttributes método obtiene todos los atributos personalizados para este ensamblado.
Información de versión
.NET Framework
Disponible desde 1.1
Ver también
GetCustomAttributes
GetCustomAttributes Sobrecarga
Interfaz _Assembly
Espacio de nombres System.Runtime.InteropServices
Volver al principio