43 references to Boolean
System.ServiceModel (43)
System\ServiceModel\Dispatcher\QueryBranchOp.cs (1)
161Fx.Assert(context.Values[i].IsType(ValueDataType.Boolean), "");
System\ServiceModel\Dispatcher\QueryCoreOp.cs (2)
266case ValueDataType.Boolean: 304case ValueDataType.Boolean:
System\ServiceModel\Dispatcher\QueryFunctions.cs (9)
389new XPathFunction(XPathFunctionID.Boolean, "boolean", ValueDataType.Boolean, new ValueDataType[] { ValueDataType.None }), 390new XPathFunction(XPathFunctionID.False, "false", ValueDataType.Boolean), 391new XPathFunction(XPathFunctionID.True, "true", ValueDataType.Boolean), 392new XPathFunction(XPathFunctionID.Not, "not", ValueDataType.Boolean, new ValueDataType[] { ValueDataType.Boolean }), 393new XPathFunction(XPathFunctionID.Lang, "lang", ValueDataType.Boolean, new ValueDataType[] { ValueDataType.String }), 407new XPathFunction(XPathFunctionID.StartsWith, "starts-with", ValueDataType.Boolean, new ValueDataType[] { ValueDataType.String, ValueDataType.String }), 410new XPathFunction(XPathFunctionID.Contains, "contains", ValueDataType.Boolean, new ValueDataType[] { ValueDataType.String, ValueDataType.String }), 746values[arg.basePtr++].ConvertTo(context, ValueDataType.Boolean);
System\ServiceModel\Dispatcher\QueryResultOp.cs (2)
78case ValueDataType.Boolean: 199case ValueDataType.Boolean:
System\ServiceModel\Dispatcher\QuerySetOp.cs (1)
109Fx.Assert(context.Values[resultIndex].IsType(ValueDataType.Boolean), "");
System\ServiceModel\Dispatcher\QueryValue.cs (15)
43this.type = ValueDataType.Boolean; 187case ValueDataType.Boolean: 192case ValueDataType.Boolean: 207case ValueDataType.Boolean: 222case ValueDataType.Boolean: 237case ValueDataType.Boolean: 256case ValueDataType.Boolean: 284case ValueDataType.Boolean: 312case ValueDataType.Boolean: 334case ValueDataType.Boolean: 371if (ValueDataType.Boolean != this.type) 428Fx.Assert(this.type == ValueDataType.Boolean, ""); 461case ValueDataType.Boolean: 483case ValueDataType.Boolean: 505case ValueDataType.Boolean:
System\ServiceModel\Dispatcher\XPathCompiler.cs (8)
121if (subExpr.ReturnType != ValueDataType.Boolean) 123boolBlock.Append(new TypecastOpcode(ValueDataType.Boolean)); 134if (subExpr.ReturnType != ValueDataType.Boolean) 136boolBlock.Append(new TypecastOpcode(ValueDataType.Boolean)); 162if (subExpr.ReturnType != ValueDataType.Boolean) 164boolBlock.Append(new TypecastOpcode(ValueDataType.Boolean)); 660else if (expr.ReturnType != ValueDataType.Boolean) 662this.CompileTypecast(ValueDataType.Boolean);
System\ServiceModel\Dispatcher\XPathExpr.cs (3)
217: base(XPathExprType.Relational, ValueDataType.Boolean, left, right) 306case ValueDataType.Boolean: 328return ValueDataType.Boolean;
System\ServiceModel\Dispatcher\XPathParser.cs (2)
233XPathExpr andExpr = new XPathExpr(XPathExprType.And, ValueDataType.Boolean); 632XPathExpr orExpr = new XPathExpr(XPathExprType.Or, ValueDataType.Boolean);