CustomAttributeExtensions.IsDefined Method (MemberInfo, Type, Boolean)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Indicates whether custom attributes of a specified type are applied to a specified member, and, optionally, applied to its ancestors.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ExtensionAttribute> _ Public Shared Function IsDefined ( _ element As MemberInfo, _ attributeType As Type, _ inherit As Boolean _ ) As Boolean
Parameters
- element
- Type: System.Reflection.MemberInfo
The member to inspect.
- attributeType
- Type: System.Type
The type of the attribute to search for.
- inherit
- Type: System.Boolean
true to inspect the ancestors of element; otherwise, false.
Return Value
Type: System.Booleantrue if an attribute of the specified type is applied to element; otherwise, false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type MemberInfo. When you use instance method syntax to call this method, omit the first parameter.
Show: