ParameterAttributes Enumeration
Defines the attributes that can be associated with a parameter. These are defined in CorHdr.h.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| HasDefault | Specifies that the parameter has a default value. | |
| HasFieldMarshal | Specifies that the parameter has field marshaling information. | |
| In | Specifies that the parameter is an input parameter. | |
| Lcid | Specifies that the parameter is a locale identifier (lcid). | |
| None | Specifies that there is no parameter attribute. | |
| Optional | Specifies that the parameter is optional. | |
| Out | Specifies that the parameter is an output parameter. | |
| Reserved3 | Reserved. | |
| Reserved4 | Reserved. | |
| ReservedMask | Specifies that the parameter is reserved. | |
| Retval | Specifies that the parameter is a return value. |
To get the ParameterAttributes value, first get the Type. From the Type, get the ParameterInfo array. The ParameterAttributes value is within the array.
These enumerator values are dependent on optional metadata. Not all attributes are available from all compilers. See the appropriate compiler instructions to determine which enumerated values are available.
The following example displays the attributes of the specified parameter.
using namespace System; using namespace System::Reflection; using namespace System::Runtime::InteropServices; public ref class paramatt { public: static void mymethod( String^ str1, [Out]interior_ptr<String^> str2, interior_ptr<String^> str3 ) { *str2 = "string"; } }; int main() { Console::WriteLine( "\nReflection.ParameterAttributes" ); // Get the Type and the method. Type^ Mytype = Type::GetType( "paramatt" ); MethodBase^ Mymethodbase = Mytype->GetMethod( "mymethod" ); // Display the method. Console::Write( "\nMymethodbase = {0}", Mymethodbase ); // Get the ParameterInfo array. array<ParameterInfo^>^Myarray = Mymethodbase->GetParameters(); // Get and display the attributes for the second parameter. ParameterAttributes Myparamattributes = Myarray[ 1 ]->Attributes; Console::Write( "\nFor the second parameter:\nMyparamattributes = {0}, which is an {1}", (int)Myparamattributes, Myparamattributes ); return 0; }
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1