TaskAsyncActionDescriptor::GetCustomAttributes Method

 

Returns an array of 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 an array of custom attributes that are defined for this member, excluding named attributes.(Overrides ActionDescriptor::GetCustomAttributes(Boolean).)

System_CAPS_pubmethodGetCustomAttributes(Type^, Boolean)

Returns an array of custom attributes that are defined for this member, identified by type.(Overrides ActionDescriptor::GetCustomAttributes(Type^, Boolean).)

Return to top

TaskAsyncActionDescriptor::GetCustomAttributes Method (Boolean)

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

public:
virtual array<Object^>^ GetCustomAttributes(
	bool inherit
) override

Parameters

inherit
Type: System::Boolean

true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.

Return Value

Type: array<System::Object^>^

An array of custom attributes, or an empty array if no custom attributes exist.

Return to top

TaskAsyncActionDescriptor::GetCustomAttributes Method (Type^, Boolean)

Returns an array of custom attributes that are defined for this member, identified by type.

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: array<System::Object^>^

An array of custom attributes, or an empty array if no custom attributes exist.

Return to top
Show: