<PackageReference Include="Microsoft.CSharp" Version="4.6.0-preview5.19224.8" />

CSharpBinderFlags

public enum CSharpBinderFlags
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.
using System; using System.ComponentModel; namespace Microsoft.CSharp.RuntimeBinder { [Flags] [EditorBrowsable(EditorBrowsableState.Never)] public enum CSharpBinderFlags { None = 0, CheckedContext = 1, InvokeSimpleName = 2, InvokeSpecialName = 4, BinaryOperationLogical = 8, ConvertExplicit = 16, ConvertArrayIndex = 32, ResultIndexed = 64, ValueFromCompoundAssignment = 128, ResultDiscarded = 256 } }