ReflectedActionDescriptor.GetCustomAttributes Method

 

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

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

NameDescription
System_CAPS_pubmethodGetCustomAttributes(Boolean)

Returns an array of custom attributes defined for this member, excluding named attributes.(Overrides ActionDescriptor.GetCustomAttributes(Boolean).)

System_CAPS_pubmethodGetCustomAttributes(Type, Boolean)

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

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

Return to top

ReflectedActionDescriptor.GetCustomAttributes Method (Boolean)

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

Public Overrides Function GetCustomAttributes (
	inherit As Boolean
) As 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.

Exception Condition
TypeLoadException

The custom attribute type cannot be loaded.

AmbiguousMatchException

There is more than one attribute of type attributeType defined for this member.

Return to top

ReflectedActionDescriptor.GetCustomAttributes Method (Type, Boolean)

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

Public Overrides Function GetCustomAttributes (
	attributeType As Type,
	inherit As Boolean
) As 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.

Exception Condition
TypeLoadException

The custom attribute type cannot be loaded.

AmbiguousMatchException

There is more than one attribute of type attributeType defined for this member.

Return to top
Show: