CSharpBinderFlags 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 not 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 CSharpBinderFlags
[System.Flags]
public enum CSharpBinderFlags
[<System.Flags>]
type CSharpBinderFlags =
Public Enum CSharpBinderFlags
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | There is no additional information required for this binder. |
CheckedContext | 1 | The evaluation of this binder happens in a checked context. |
InvokeSimpleName | 2 | The binder represents an invoke on a simple name. |
InvokeSpecialName | 4 | The binder represents an invoke on a specialname. |
BinaryOperationLogical | 8 | The binder represents a logical AND or logical OR that is part of a conditional logical operator evaluation. |
ConvertExplicit | 16 | The binder represents an explicit conversion. |
ConvertArrayIndex | 32 | The binder represents an implicit conversion for use in an array creation expression. |
ResultIndexed | 64 | The result of any bind is going to be indexed get a set index or get index binder. |
ValueFromCompoundAssignment | 128 | The value in this set index or set member comes a compound assignment operator. |
ResultDiscarded | 256 | The binder is used in a position that does not require a result, and can therefore bind to a void returning method. |