Catatan
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba masuk atau mengubah direktori.
Akses ke halaman ini memerlukan otorisasi. Anda dapat mencoba mengubah direktori.
Retrieves custom attributes that are defined for this member, excluding named attributes.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Overridable Function GetCustomAttributes ( _
inherit As Boolean _
) As Object()
public virtual Object[] GetCustomAttributes(
bool inherit
)
public:
virtual array<Object^>^ GetCustomAttributes(
bool inherit
)
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.
Implements
ICustomAttributeProvider.GetCustomAttributes(Boolean)
Exceptions
| Exception | Condition |
|---|---|
| TypeLoadException | The custom attribute type cannot be loaded. |
| AmbiguousMatchException | There is more than one attribute of type attributeType defined for this member. |