CustomAttributeExtensions.GetCustomAttribute Method (ParameterInfo, Type, Boolean)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
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)
'Declaration <ExtensionAttribute> _ Public Shared Function GetCustomAttribute ( _ element As ParameterInfo, _ attributeType As Type, _ inherit As Boolean _ ) As Attribute
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 Nothing if no such attribute is found.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ParameterInfo. When you use instance method syntax to call this method, omit the first parameter.
Show: