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.

Namespace:  System.Reflection
Assembly:  mscorlib (in mscorlib.dll)

Syntax

<ExtensionAttribute> _
Public Shared Function GetCustomAttribute(Of T As Attribute) ( _
    element As Module _
) As T
public static T GetCustomAttribute<T>(
    this Module element
)
where T : Attribute

Type Parameters

  • T
    The type of attribute to search for.

Parameters

Return Value

Type: T
A custom attribute that matches T, or nullNothingnullptra null reference (Nothing in Visual Basic) 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.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

CustomAttributeExtensions Class

GetCustomAttribute Overload

System.Reflection Namespace