CustomAttributeExtensions.GetCustomAttribute(Of T) Method (Module)
[ 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 module.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ExtensionAttribute> _ Public Shared Function GetCustomAttribute(Of T As Attribute) ( _ element As Module _ ) As T
Type Parameters
- T
The type of attribute to search for.
Parameters
- element
- Type: System.Reflection.Module
The module to inspect.
Return Value
Type: TA custom attribute that matches T, 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 Module. When you use instance method syntax to call this method, omit the first parameter.
Show: