This documentation is archived and is not being maintained.
CSharpArgumentInfoFlags Enumeration
Visual Studio 2010
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Represents information about C# dynamic operations that are specific to particular arguments at a call site. Instances of this class are generated by the C# compiler.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: Microsoft.CSharp.RuntimeBinderAssembly: Microsoft.CSharp (in Microsoft.CSharp.dll)
| Member name | Description | |
|---|---|---|
| None | No additional information to represent. | |
| UseCompileTimeType | The argument's compile-time type should be considered during binding. | |
| Constant | The argument is a constant. | |
| NamedArgument | The argument is a named argument. | |
| IsRef | The argument is passed to a ref parameter. | |
| IsOut | The argument is passed to an out parameter. | |
| IsStaticType | The argument is a Type indicating an actual type name used in source. Used only for target objects in static calls. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, 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.
Show: