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

UnaryOperationBinder() protected method

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