Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Assembly::GetCustomAttributesData Method ()

.NET Framework (current version)
 

Returns information about the attributes that have been applied to the current Assembly, expressed as CustomAttributeData objects.

Namespace:   System.Reflection
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual IList<CustomAttributeData^>^ GetCustomAttributesData()

Return Value

Type: System.Collections.Generic::IList<CustomAttributeData^>^

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

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 like 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.

.NET Framework
Available since 4.0
Return to top
Show:
© 2017 Microsoft