NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ParameterInfo.Attributes

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;

Property Value

Read-only. Retrieves the attributes for this parameter.

Remarks

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.

See Also

ParameterInfo Class | ParameterInfo Members | System.Reflection Namespace | ParameterAttributes