21 references to Left
System.ServiceModel (21)
System\ServiceModel\Dispatcher\XPathCompiler.cs (21)
205
this.CompileExpression(unionExpr.
Left
);
400
XPathLiteralExpr left = (XPathLiteralExpr)expr.
Left
;
457
if (XPathExprType.Number == mathExpr.Right.Type && XPathExprType.Number == mathExpr.
Left
.Type)
459
double left = ((XPathNumberExpr)mathExpr.
Left
).Number;
460
if (((XPathNumberExpr)mathExpr.
Left
).Negate)
462
((XPathNumberExpr)mathExpr.
Left
).Negate = false;
499
this.CompileExpression(mathExpr.
Left
);
500
if (ValueDataType.Double != mathExpr.
Left
.ReturnType)
511
bool leftNumber = (XPathExprType.Number == expr.
Left
.Type);
517
this.CompileExpression(leftNumber ? expr.Right : expr.
Left
);
518
XPathNumberExpr litExpr = leftNumber ? (XPathNumberExpr)expr.
Left
: (XPathNumberExpr)expr.Right;
536
bool leftNumber = (XPathExprType.Number == expr.
Left
.Type);
541
this.CompileExpression(leftNumber ? expr.Right : expr.
Left
);
542
XPathNumberExpr litExpr = leftNumber ? (XPathNumberExpr)expr.
Left
: (XPathNumberExpr)expr.Right;
681
if (expr.
Left
.IsLiteral && expr.Right.IsLiteral)
692
if (XPathExprType.Number == expr.
Left
.Type || XPathExprType.Number == expr.Right.Type)
699
if (expr.Op == RelationOperator.Eq && (XPathExprType.String == expr.
Left
.Type || XPathExprType.String == expr.Right.Type))
707
this.CompileExpression(expr.
Left
);
724
bool leftString = (XPathExprType.String == expr.
Left
.Type);
730
this.CompileExpression(leftString ? expr.Right : expr.
Left
);
731
string literal = leftString ? ((XPathStringExpr)expr.
Left
).String : ((XPathStringExpr)expr.Right).String;