_Assembly.GetCustomAttributes Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Returns
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
Returns
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.