ControllerDescriptor.GetCustomAttributes Method (Type, Boolean)
Retrieves custom attributes of a specified type that are defined for this member, excluding named attributes.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Public Overridable Function GetCustomAttributes ( _ attributeType As Type, _ inherit As Boolean _ ) As Object() 'Usage Dim instance As ControllerDescriptor Dim attributeType As Type Dim inherit As Boolean Dim returnValue As Object() returnValue = instance.GetCustomAttributes(attributeType, _ inherit)
Parameters
- attributeType
- Type: System.Type
The type of the custom attributes.
- inherit
- Type: System.Boolean
true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.
Return Value
Type: System.Object()An array of custom attributes, or an empty array if no custom attributes exist.
Implements
ICustomAttributeProvider.GetCustomAttributes(Type, Boolean)| Exception | Condition |
|---|---|
| TypeLoadException | The custom attribute type cannot be loaded. |
| AmbiguousMatchException | There is more than one attribute of type attributeType defined for this member. |
| ArgumentNullException | The attributeType parameter is Nothing (Nothing in Visual Basic). |
Show: