CSharpArgumentInfoFlags Enumeration
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
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 | |
|---|---|---|
| Constant | The argument is a constant. | |
| IsOut | The argument is passed to an out parameter. | |
| IsRef | The argument is passed to a ref parameter. | |
| IsStaticType | The argument is a Type indicating an actual type name used in source. Used only for target objects in static calls. | |
| NamedArgument | The argument is a named argument. | |
| None | No additional information to represent. | |
| UseCompileTimeType | The argument's compile-time type should be considered during binding. |
Show: