Documentation de Dvp.NET. Forum : http://www.developpez.net/forums/f1239/applications/projets/projets-heberges/dvp-net/

[Ceci est une documentation préliminaire, sous réserve de modification.]

Récupère un attribut appliqué à un objet de réflexion.

Espace de nom : Developpez.Dotnet.Reflection
Assembly : Developpez.Dotnet (dans Developpez.Dotnet.dll) Version: 0.6.0.0 (0.6.0.0)

Syntaxe

C#
public static Attribute GetAttribute(
	this ICustomAttributeProvider reflectionObject,
	Type attributeType
)
Visual Basic (Déclaration)
<ExtensionAttribute> _
Public Shared Function GetAttribute ( _
	reflectionObject As ICustomAttributeProvider, _
	attributeType As Type _
) As Attribute
Visual C++
public:
[ExtensionAttribute]
static Attribute^ GetAttribute(
	ICustomAttributeProvider^ reflectionObject, 
	Type^ attributeType
)

Paramètres

reflectionObject
Type: System.Reflection..::..ICustomAttributeProvider
L'objet de réflexion dont on veut récupérer un attribut
attributeType
Type: System..::..Type
Le type de l'attribut recherché

Valeur de retour

L'attribut recherché s'il existe, null sinon

Remarque sur l'utilisation

En Visual Basic et C#, vous pouvez appeler cette méthode comme une méthode d'instance sur n'importe quel objet de type ICustomAttributeProvider. Lorsque vous utilisez la syntaxe des méthodes d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez Méthodes d'extension (Visual Basic) ou Méthodes d'extension (Guide de programmation C#).

Voir aussi