AttributeGetCustomAttribute Method (Module, Type, Boolean) |
Retrieves a custom attribute applied to a module. Parameters specify the module, the type of the custom attribute to search for, and an ignored search option.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public static Attribute GetCustomAttribute(
Module element,
Type attributeType,
bool inherit
)
Parameters
- element
- Type: System.ReflectionModule
An object derived from the Module class that describes a portable executable file. - attributeType
- Type: SystemType
The type, or a base type, of the custom attribute to search for. - inherit
- Type: SystemBoolean
This parameter is ignored, and does not affect the operation of this method.
Return Value
Type:
AttributeA reference to the single custom attribute of type
attributeType that is applied to
element, or null if there is no such attribute.
Exceptions See Also