CustomAttributeExtensions.GetCustomAttributes Method (ParameterInfo, Boolean)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves a collection of custom attributes that are applied to a specified parameter, and optionally inspects the ancestors of that parameter.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ExtensionAttribute> _ Public Shared Function GetCustomAttributes ( _ element As ParameterInfo, _ inherit As Boolean _ ) As IEnumerable(Of Attribute)
Parameters
- element
- Type: System.Reflection.ParameterInfo
The parameter to inspect.
- inherit
- Type: System.Boolean
true to inspect the ancestors of element; otherwise, false.
Return Value
Type: System.Collections.Generic.IEnumerable(Of Attribute)A collection of the custom attributes that are applied to element, or an empty collection if no such attributes exist.
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: