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.

ParameterInfo::GetCustomAttributesData Method ()

.NET Framework (current version)
 

Returns a list of CustomAttributeData objects for the current parameter, which can be used in the reflection-only context.

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

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 ParameterInfo::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 example code, see the CustomAttributeData class.

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