4 writes to Op
System.ServiceModel (4)
System\ServiceModel\Dispatcher\XPathCompiler.cs (4)
559expr.Op = RelationOperator.Lt; 562expr.Op = RelationOperator.Le; 565expr.Op = RelationOperator.Gt; 568expr.Op = RelationOperator.Ge;
10 references to Op
System.ServiceModel (10)
System\ServiceModel\Dispatcher\XPathCompiler.cs (10)
403bool result = QueryValueModel.CompileTimeCompare(left.Literal, right.Literal, expr.Op); 509Fx.Assert(expr.Op == RelationOperator.Eq, ""); 530if (expr.Op == RelationOperator.Eq) 556switch (expr.Op) 575this.codeBlock.Append(new NumberIntervalOpcode(literal, expr.Op)); 579this.codeBlock.Append(new NumberRelationOpcode(literal, expr.Op)); 689if (expr.Op != RelationOperator.Ne) 699if (expr.Op == RelationOperator.Eq && (XPathExprType.String == expr.Left.Type || XPathExprType.String == expr.Right.Type)) 709this.codeBlock.Append(new RelationOpcode(expr.Op)); 722Fx.Assert(expr.Op == RelationOperator.Eq, "");