DynamicMethod.DefineParameter Method
Defines a parameter of the dynamic method.
Assembly: mscorlib (in mscorlib.dll)
public ParameterBuilder DefineParameter( int position, ParameterAttributes attributes, string parameterName )
Parameters
- position
- Type: System.Int32
The position of the parameter in the parameter list. Parameters are indexed beginning with the number 1 for the first parameter.
- attributes
- Type: System.Reflection.ParameterAttributes
A bitwise combination of ParameterAttributes values that specifies the attributes of the parameter.
- parameterName
- Type: System.String
The name of the parameter. The name can be a zero-length string.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException |
The method has no parameters. -or- position is less than 0. -or- position is greater than the number of the method's parameters. |
If position is 0, the DefineParameter method refers to the return value. Setting parameter information has no effect on the return value.
If the dynamic method has already been completed, by calling the CreateDelegate or Invoke method, the DefineParameter method has no effect. No exception is thrown.
The following code example shows how to define parameter information for a dynamic method. This code example is part of a larger example provided for the DynamicMethod class.
// Add parameter information to the dynamic method. (This is not // necessary, but can be useful for debugging.) For each parameter, // identified by position, supply the parameter attributes and a // parameter name. hello.DefineParameter(1, ParameterAttributes.In, "message"); hello.DefineParameter(2, ParameterAttributes.In, "valueToReturn");
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.