This topic has not yet been rated - Rate this topic

Attribute.GetCustomAttribute Method (ParameterInfo, Type, Boolean)

May 02, 2013

Retrieves a custom attribute applied to a method parameter. Parameters specify the method parameter, the type of the custom attribute to search for, and whether to search ancestors of the method parameter.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
public static Attribute GetCustomAttribute(
	ParameterInfo element,
	Type attributeType,
	bool inherit
)

Parameters

element
Type: System.Reflection.ParameterInfo
An object derived from the ParameterInfo class that describes a parameter of a member of a class.
attributeType
Type: System.Type
The type, or a base type, of the custom attribute to search for.
inherit
Type: System.Boolean
If true, specifies to also search the ancestors of element for custom attributes.

Return Value

Type: System.Attribute
A reference to the single custom attribute of type attributeType that is applied to element, or null if there is no such attribute.
ExceptionCondition
ArgumentNullException

element or attributeType is null.

ArgumentException

attributeType is not derived from Attribute.

AmbiguousMatchException

More than one of the requested attributes was found.

TypeLoadException

A custom attribute type cannot be loaded.

If element represents a parameter in a method of a derived type, the return value includes the inheritable custom attributes applied to the same parameter in the overridden base methods.

Windows Phone OS

Supported in: 8.0, 7.1, 7.0

Windows Phone

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.