Attribute.GetCustomAttributes Method (MemberInfo)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves an array of the custom attributes applied to a member of a type. A parameter specifies the member.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- element
- Type: System.Reflection.MemberInfo
An object derived from the MemberInfo class that describes a constructor, event, field, method, or property member of a class.
Return Value
Type: System.Attribute []An Attribute array that contains the custom attributes applied to element, or an empty array if no such custom attributes exist.
| Exception | Condition |
|---|---|
| ArgumentNullException | element is null. |
| NotSupportedException | element is not a constructor, method, property, event, type, or field. |
| TypeLoadException | A custom attribute type cannot be loaded. |
Show: