ReflectedAsyncControllerDescriptor.GetCustomAttributes Method

 

Returns custom attributes that are defined for this member, excluding named attributes.

Namespace:   System.Web.Mvc.Async
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

NameDescription
System_CAPS_pubmethodGetCustomAttributes(Boolean)

Returns custom attributes that are defined for this member, excluding named attributes.(Overrides ControllerDescriptor.GetCustomAttributes(Boolean).)

System_CAPS_pubmethodGetCustomAttributes(Type, Boolean)

Returns custom attributes of a specified type that are defined for this member, excluding named attributes.(Overrides ControllerDescriptor.GetCustomAttributes(Type, Boolean).)

If there are no custom attributes, this method returns an empty array.

Return to top

ReflectedAsyncControllerDescriptor.GetCustomAttributes Method (Boolean)

Returns custom attributes that are defined for this member, excluding named attributes.

override GetCustomAttributes : 
        inherit:bool -> Object[]

Parameters

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.

If there are no custom attributes, this method returns an empty array.

Return to top

ReflectedAsyncControllerDescriptor.GetCustomAttributes Method (Type, Boolean)

Returns custom attributes of a specified type that are defined for this member, excluding named attributes.

override GetCustomAttributes : 
        attributeType:Type *
        inherit:bool -> Object[]

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.

Return to top
Show: