This documentation is archived and is not being maintained.
CSharpBinderFlags 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 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 | |
|---|---|---|
| None | There is no additional information required for this binder. | |
| CheckedContext | The evaluation of this binder happens in a checked context. | |
| InvokeSimpleName | The binder represents an invoke on a simple name. | |
| InvokeSpecialName | The binder represents an invoke on a specialname. | |
| BinaryOperationLogical | The binder represents a logical AND or logical OR that is part of a conditional logical operator evaluation. | |
| ConvertExplicit | The binder represents an explicit conversion. | |
| ConvertArrayIndex | The binder represents an implicit conversion for use in an array creation expression. | |
| 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. | |
| ResultDiscarded | The binder is used in a position that does not require a result, and can therefore bind to a void returning method. |
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: