CSharpBinderFlags 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 not 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 | |
|---|---|---|
| BinaryOperationLogical | The binder represents a logical AND or logical OR that is part of a conditional logical operator evaluation. | |
| CheckedContext | The evaluation of this binder happens in a checked context. | |
| ConvertArrayIndex | The binder represents an implicit conversion for use in an array creation expression. | |
| ConvertExplicit | The binder represents an explicit conversion. | |
| InvokeSimpleName | The binder represents an invoke on a simple name. | |
| InvokeSpecialName | The binder represents an invoke on a specialname. | |
| None | There is no additional information required for this binder. | |
| ResultDiscarded | The binder is used in a position that does not require a result, and can therefore bind to a void returning method. | |
| ResultIndexed | The result of any bind is going to be indexed get a set index or get index binder. | |
| ValueFromCompoundAssignment | The value in this set index or set member comes a compound assignment operator. |
Show: