JSField.GetCustomAttributes Method

Definition

Returns an array that contains the custom attributes that are attached to this field.

Overloads

GetCustomAttributes(Boolean)

This API supports the product infrastructure and is not intended to be used directly from your code.

Returns an array that contains the custom attributes that are attached to this field.

GetCustomAttributes(Type, Boolean)

This API supports the product infrastructure and is not intended to be used directly from your code.

Returns an array that contains the custom attributes that are attached to this field, searching only for attributes of the specified type.

GetCustomAttributes(Boolean)

Returns an array that contains the custom attributes that are attached to this field.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 override cli::array <System::Object ^> ^ GetCustomAttributes(bool inherit);
public override object[] GetCustomAttributes (bool inherit);
override this.GetCustomAttributes : bool -> obj[]
Public Overrides Function GetCustomAttributes (inherit As Boolean) As Object()

Parameters

inherit
Boolean

true to search this member's inheritance hierarchy to find the attributes.

Returns

Object[]

An array of FieldInfo objects that has zero elements.

See also

Applies to

GetCustomAttributes(Type, Boolean)

Returns an array that contains the custom attributes that are attached to this field, searching only for attributes of the specified type.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 override cli::array <System::Object ^> ^ GetCustomAttributes(Type ^ t, bool inherit);
public override object[] GetCustomAttributes (Type t, bool inherit);
override this.GetCustomAttributes : Type * bool -> obj[]
Public Overrides Function GetCustomAttributes (t As Type, inherit As Boolean) As Object()

Parameters

t
Type

The type of attribute to search for.

inherit
Boolean

true to search this member's inheritance hierarchy to find the attributes.

Returns

Object[]

An array of FieldInfo objects that has zero elements.

See also

Applies to