System.Dynamic.BinaryOperationBinder.BinaryOperationBinder C# (CSharp) Method

BinaryOperationBinder() protected method

Initializes a new instance of the BinaryOperationBinder class.
protected BinaryOperationBinder ( ExpressionType operation ) : System.Dynamic.Utils
operation ExpressionType The binary operation kind.
return System.Dynamic.Utils
        protected BinaryOperationBinder(ExpressionType operation)
        {
            ContractUtils.Requires(OperationIsValid(operation), nameof(operation));
            Operation = operation;
        }