AssemblyBuilder.GetCustomAttributesData Method

Definition

Returns CustomAttributeData objects that contain information about the attributes that have been applied to the current AssemblyBuilder.

public:
 override System::Collections::Generic::IList<System::Reflection::CustomAttributeData ^> ^ GetCustomAttributesData();
public override System.Collections.Generic.IList<System.Reflection.CustomAttributeData> GetCustomAttributesData ();
override this.GetCustomAttributesData : unit -> System.Collections.Generic.IList<System.Reflection.CustomAttributeData>
Public Overrides Function GetCustomAttributesData () As IList(Of CustomAttributeData)

Returns

A generic list of CustomAttributeData objects representing data about the attributes that have been applied to the current module.

Remarks

Use this method to examine the custom attributes of code in the reflection-only context, in cases where the custom attributes themselves are defined in code that is loaded into the reflection-only context. Methods such as Attribute.GetCustomAttributes and Assembly.GetCustomAttributes cannot be used in such cases, because they create instances of the attributes. Code in the reflection-only context cannot be executed. For more information and for example code, see the CustomAttributeData class.

Applies to