52 references to Sequence
System.ServiceModel (52)
System\ServiceModel\Dispatcher\QueryCoreOp.cs (2)
269
case ValueDataType.
Sequence
:
316
case ValueDataType.
Sequence
:
System\ServiceModel\Dispatcher\QueryFunctions.cs (5)
397
new XPathFunction(XPathFunctionID.Sum, "sum", ValueDataType.Double, new ValueDataType[] { ValueDataType.
Sequence
}),
421
new XPathFunction(XPathFunctionID.Count, "count", ValueDataType.Double, new ValueDataType[] { ValueDataType.
Sequence
}),
422
new XPathFunction(XPathFunctionID.LocalName, "local-name", ValueDataType.String, new ValueDataType[] { ValueDataType.
Sequence
}),
424
new XPathFunction(XPathFunctionID.Name, "name", ValueDataType.String, new ValueDataType[] { ValueDataType.
Sequence
}),
426
new XPathFunction(XPathFunctionID.NamespaceUri, "namespace-uri", ValueDataType.String, new ValueDataType[] { ValueDataType.
Sequence
}),
System\ServiceModel\Dispatcher\QueryIntervalOp.cs (1)
1141
if (ValueDataType.
Sequence
== val.Type)
System\ServiceModel\Dispatcher\QueryPrefixOp.cs (1)
851
if (ValueDataType.
Sequence
== val.Type)
System\ServiceModel\Dispatcher\QueryRelOp.cs (2)
312
if (ValueDataType.
Sequence
== val.Type)
360
if (ValueDataType.
Sequence
== val.Type)
System\ServiceModel\Dispatcher\QueryResultOp.cs (2)
72
case ValueDataType.
Sequence
:
193
case ValueDataType.
Sequence
:
System\ServiceModel\Dispatcher\QuerySetOp.cs (1)
174
Fx.Assert(ValueDataType.
Sequence
== values[i].Type, "");
System\ServiceModel\Dispatcher\QueryStack.cs (2)
277
Fx.Assert(this.buffer[i].IsType(ValueDataType.
Sequence
), "");
619
Fx.Assert(this.stack.IsValidStackPtr(index) && this.buffer.buffer[index].IsType(ValueDataType.
Sequence
), "");
System\ServiceModel\Dispatcher\QueryValue.cs (20)
131
this.type = ValueDataType.
Sequence
;
172
if (ValueDataType.
Sequence
== this.type)
196
case ValueDataType.
Sequence
:
211
case ValueDataType.
Sequence
:
217
case ValueDataType.
Sequence
:
226
case ValueDataType.
Sequence
:
241
case ValueDataType.
Sequence
:
262
case ValueDataType.
Sequence
:
297
if (ValueDataType.
Sequence
== this.type)
318
case ValueDataType.
Sequence
:
340
case ValueDataType.
Sequence
:
391
if (ValueDataType.
Sequence
!= this.type)
434
Fx.Assert(null != context && this.type == ValueDataType.
Sequence
&& null != this.sequence, "");
467
case ValueDataType.
Sequence
:
489
case ValueDataType.
Sequence
:
511
case ValueDataType.
Sequence
:
521
if (ValueDataType.
Sequence
== this.type)
530
if (ValueDataType.
Sequence
== this.type)
539
if (ValueDataType.
Sequence
== this.type)
548
if (ValueDataType.
Sequence
== this.type)
System\ServiceModel\Dispatcher\XPathCompiler.cs (6)
245
if (expr.ReturnType == ValueDataType.
Sequence
)
253
if (expr.SubExprCount == 0 && expr.ReturnType == ValueDataType.
Sequence
)
280
if (subExpr.Count > 1 && ValueDataType.
Sequence
!= filterExpr.ReturnType)
287
if (filterExpr.ReturnType == ValueDataType.
Sequence
)
365
if (function.ParamTypes[index] == ValueDataType.
Sequence
)
594
if (expr.SubExpr[0].ReturnType == ValueDataType.
Sequence
)
System\ServiceModel\Dispatcher\XPathExpr.cs (3)
312
case ValueDataType.
Sequence
:
334
return ValueDataType.
Sequence
;
385
: base(XPathExprType.PathStep, ValueDataType.
Sequence
, predicates)
System\ServiceModel\Dispatcher\XPathParser.cs (7)
30
if (expr.ReturnType != ValueDataType.
Sequence
)
462
return new XPathExpr(XPathExprType.LocationPath, ValueDataType.
Sequence
, path);
673
XPathExpr relPathExpr = new XPathExpr(XPathExprType.RelativePath, ValueDataType.
Sequence
, relPath);
675
pathExpr = new XPathExpr(XPathExprType.Path, ValueDataType.
Sequence
);
689
XPathExpr relPathExpr = new XPathExpr(XPathExprType.RelativePath, ValueDataType.
Sequence
, relPath);
690
pathExpr = new XPathExpr(XPathExprType.Path, ValueDataType.
Sequence
);
969
return new XPathConjunctExpr(XPathExprType.Union, ValueDataType.
Sequence
, leftExpr, rightExpr);