ReflectedAsyncControllerDescriptor.GetCustomAttributes Method (Type, Boolean)
Returns custom attributes of a specified type that are defined for this member, excluding named attributes.
Namespace: System.Web.Mvc.Async
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Overrides Function GetCustomAttributes ( _
attributeType As Type, _
inherit As Boolean _
) As Object()
public override Object[] GetCustomAttributes(
Type attributeType,
bool inherit
)
public:
virtual array<Object^>^ GetCustomAttributes(
Type^ attributeType,
bool inherit
) override
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)