Retrieves the attributes for this parameter.
[Visual Basic] Overridable Public ReadOnly Property Attributes As _ ParameterAttributes [C#] public ParameterAttributes Attributes {virtual get;} [C++] public: __property virtual ParameterAttributes get_Attributes(); [JScript] public function get Attributes() : ParameterAttributes;
Read-only. Retrieves the attributes for this parameter.
This method utilizes the AttrsImpl method.
To get the ParameterInfo array, first get the method. From the method, get the Type. From the Type, get the ParameterInfo array.
The Attributes is a ParameterAttributes enumeration defining the attributes that may be associated with a Parameter. This enumerated value can be used to determine the In/ Out attributes of the parameter.
ParameterInfo Class | ParameterInfo Members | System.Reflection Namespace | ParameterAttributes