23 references to XPathOperatorGroup
System.Data.SqlXml (23)
System\Xml\Xsl\XPath\XPathBuilder.cs (23)
108case XPathOperatorGroup.Logical : return LogicalOperator (op, left, right); 109case XPathOperatorGroup.Equality : return EqualityOperator (op, left, right); 110case XPathOperatorGroup.Relational : return RelationalOperator(op, left, right); 111case XPathOperatorGroup.Arithmetic : return ArithmeticOperator(op, left, right); 112case XPathOperatorGroup.Negate : return NegateOperator (op, left, right); 113case XPathOperatorGroup.Union : return UnionOperator (op, left, right); 590static XPathOperatorGroup[] OperatorGroup = { 591/*Unknown */ XPathOperatorGroup.Unknown , 592/*Or */ XPathOperatorGroup.Logical , 593/*And */ XPathOperatorGroup.Logical , 594/*Eq */ XPathOperatorGroup.Equality , 595/*Ne */ XPathOperatorGroup.Equality , 596/*Lt */ XPathOperatorGroup.Relational, 597/*Le */ XPathOperatorGroup.Relational, 598/*Gt */ XPathOperatorGroup.Relational, 599/*Ge */ XPathOperatorGroup.Relational, 600/*Plus */ XPathOperatorGroup.Arithmetic, 601/*Minus */ XPathOperatorGroup.Arithmetic, 602/*Multiply */ XPathOperatorGroup.Arithmetic, 603/*Divide */ XPathOperatorGroup.Arithmetic, 604/*Modulo */ XPathOperatorGroup.Arithmetic, 605/*UnaryMinus*/ XPathOperatorGroup.Negate , 606/*Union */ XPathOperatorGroup.Union ,