Click or drag to resize
AttributeGetCustomAttribute Method (MemberInfo, Type)
Retrieves a custom attribute applied to a member of a type. Parameters specify the member, and the type of the custom attribute to search for.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static Attribute GetCustomAttribute(
	MemberInfo element,
	Type attributeType
)

Parameters

element
Type: System.ReflectionMemberInfo
An object derived from the MemberInfo class that describes a constructor, event, field, method, or property member of a class.
attributeType
Type: SystemType
The type, or a base type, of the custom attribute to search for.

Return Value

Type: Attribute
A reference to the single custom attribute of type attributeType that is applied to element, or null if there is no such attribute.
Exceptions
ExceptionCondition
ArgumentNullExceptionelement or attributeType is null.
ArgumentExceptionattributeType is not derived from Attribute.
NotSupportedExceptionelement is not a constructor, method, property, event, type, or field.
AmbiguousMatchExceptionMore than one of the requested attributes was found.
TypeLoadExceptionA custom attribute type cannot be loaded.
See Also