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,
	bool inherit
)
Visual Basic (Déclaration)
<ExtensionAttribute> _
Public Shared Function GetAttribute ( _
	reflectionObject As ICustomAttributeProvider, _
	attributeType As Type, _
	inherit As Boolean _
) As Attribute
Visual C++
public:
[ExtensionAttribute]
static Attribute^ GetAttribute(
	ICustomAttributeProvider^ reflectionObject, 
	Type^ attributeType, 
	bool inherit
)

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é
inherit
Type: System..::..Boolean
true pour rechercher aussi dans les ancêtres, false sinon

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