CSharpArgumentInfoFlags Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 supports a bitwise combination of its member values.
This API supports the product infrastructure and is not intended to be used directly from your code.
public enum class CSharpArgumentInfoFlags
[System.Flags]
public enum CSharpArgumentInfoFlags
[<System.Flags>]
type CSharpArgumentInfoFlags =
Public Enum CSharpArgumentInfoFlags
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No additional information to represent. |
UseCompileTimeType | 1 | The argument's compile-time type should be considered during binding. |
Constant | 2 | The argument is a constant. |
NamedArgument | 4 | The argument is a named argument. |
IsRef | 8 | The argument is passed to a ref parameter. |
IsOut | 16 | The argument is passed to an out parameter. |
IsStaticType | 32 | The argument is a Type indicating an actual type name used in source. Used only for target objects in static calls. |