CustomAttributeExtensions.GetCustomAttribute Method (ParameterInfo, Type, Boolean)
May 02, 2013
Retrieves a custom attribute of a specified type that is applied to a specified parameter, and optionally inspects the ancestors of that parameter.
Assembly: mscorlib (in mscorlib.dll)
public static Attribute GetCustomAttribute( this ParameterInfo element, Type attributeType, bool inherit )
Parameters
- element
- Type: System.Reflection.ParameterInfo
The parameter to inspect.
- attributeType
- Type: System.Type
The type of attribute to search for.
- inherit
- Type: System.Boolean
true to inspect the ancestors of element; otherwise, false.
Return Value
Type: System.AttributeA custom attribute matching attributeType, or null if no such attribute is found.