Attribute.GetCustomAttributes Method (Module)

 

Retrieves an array of the custom attributes applied to a module. A parameter specifies the module.

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

static member GetCustomAttributes : 
        element:Module -> Attribute[]

Parameters

element
Type: System.Reflection.Module

An object derived from the Module class that describes a portable executable file.

Return Value

Type: System.Attribute[]

An Attribute array that contains the custom attributes applied to element, or an empty array if no such custom attributes exist.

Exception Condition
ArgumentNullException

element is null.

The following code example demonstrates the use of GetCustomAttributes, taking a Module as a parameter.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: