_Assembly.GetCustomAttributes Method

Definition

Provides COM objects with version-independent access to the GetCustomAttributes methods.

Overloads

GetCustomAttributes(Type, Boolean)

Provides COM objects with version-independent access to the GetCustomAttributes(Type, Boolean) method.

GetCustomAttributes(Boolean)

Provides COM objects with version-independent access to the GetCustomAttributes(Boolean) method.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The GetCustomAttributes methods get the custom attributes for this assembly.

GetCustomAttributes(Type, Boolean)

Provides COM objects with version-independent access to the GetCustomAttributes(Type, Boolean) method.

public:
 cli::array <System::Object ^> ^ GetCustomAttributes(Type ^ attributeType, bool inherit);
public object[] GetCustomAttributes (Type attributeType, bool inherit);
abstract member GetCustomAttributes : Type * bool -> obj[]
Public Function GetCustomAttributes (attributeType As Type, inherit As Boolean) As Object()

Parameters

attributeType
Type

The Type for which the custom attributes are to be returned.

inherit
Boolean

This argument is ignored for objects of type Assembly.

Returns

Object[]

An array of type Object containing the custom attributes for this assembly as specified by attributeType.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The GetCustomAttributes method gets all the custom attributes for this assembly.

See also

Applies to

GetCustomAttributes(Boolean)

Provides COM objects with version-independent access to the GetCustomAttributes(Boolean) method.

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

Parameters

inherit
Boolean

This argument is ignored for objects of type Assembly.

Returns

Object[]

An array of type Object containing the custom attributes for this assembly.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The GetCustomAttributes method gets all the custom attributes for this assembly.

See also

Applies to