Automation.UI.Tree.QueryParts.QueryConditionPart.SetBinaryOperator C# (CSharp) Method

SetBinaryOperator() private method

Updates the active binary operator.
private SetBinaryOperator ( IBinaryOperator op ) : void
op IBinaryOperator The new operator.
return void
        internal void SetBinaryOperator(IBinaryOperator op)
        {
            if (BinaryOperator != null)
                throw new QueryConstructionException("Cannot set operator - Another binary operator is already active");

            BinaryOperator = op;
        }