TypeBuilder.GetCustomAttributes Method

Definition

Returns the custom attributes defined for this type.

Overloads

GetCustomAttributes(Boolean)

Returns all the custom attributes defined for this type.

GetCustomAttributes(Type, Boolean)

Returns all the custom attributes of the current type that are assignable to a specified type.

GetCustomAttributes(Boolean)

Source:
TypeBuilder.cs

Returns all the custom attributes defined for this type.

C#
public override object[] GetCustomAttributes(bool inherit);

Parameters

inherit
Boolean

Specifies whether to search this member's inheritance chain to find the attributes.

Returns

Object[]

Returns an array of objects representing all the custom attributes of this type.

Exceptions

This method is not currently supported for incomplete types. Retrieve the type using GetType() and call GetCustomAttributes(Boolean) on the returned Type.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided), 2.1

GetCustomAttributes(Type, Boolean)

Source:
TypeBuilder.cs

Returns all the custom attributes of the current type that are assignable to a specified type.

C#
public override object[] GetCustomAttributes(Type attributeType, bool inherit);

Parameters

attributeType
Type

The type of attribute to search for. Only attributes that are assignable to this type are returned.

inherit
Boolean

Specifies whether to search this member's inheritance chain to find the attributes.

Returns

Object[]

An array of custom attributes defined on the current type.

Exceptions

This method is not currently supported for incomplete types. Retrieve the type using GetType() and call GetCustomAttributes(Boolean) on the returned Type.

attributeType is null.

The type must be a type provided by the underlying runtime system.

Applies to

.NET 10 and other versions
Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided), 2.1