24 references to Any
System.Data.SqlXml (7)
System\Xml\Xsl\XsltOld\VariableAction.cs (1)
164
get { return XPathResultType.
Any
; }
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (6)
139
if(required == XPathResultType.
Any
) {
145
actual != XPathResultType.
Any
// actual arg is object and we can pass everithing here.
471
return XPathResultType.
Any
;
609
case XPathResultType.
Any
:
674
public FuncDocument() : base(1, 2, XPathResultType.NodeSet, new XPathResultType[] { XPathResultType.
Any
, XPathResultType.NodeSet}) {}
706
public FuncKey() : base(2, 2, XPathResultType.NodeSet, new XPathResultType[] { XPathResultType.String , XPathResultType.
Any
}) {}
System.ServiceModel (1)
System\ServiceModel\Dispatcher\MatchSingleFxEngineOpcode.cs (1)
113
case XPathResultType.
Any
:
System.Xml (16)
System\Xml\XPath\Internal\ExtensionQuery.cs (1)
113
public override XPathResultType StaticType { get { return XPathResultType.
Any
; } }
System\Xml\XPath\Internal\FilterQuery.cs (1)
39
if (cond.StaticType != XPathResultType.Number && cond.StaticType != XPathResultType.
Any
&& noPosition) {
System\Xml\XPath\Internal\Function.cs (1)
116
/* FunctionType.FuncUserDefined */ XPathResultType.
Any
System\Xml\XPath\Internal\FunctionQuery.cs (2)
91
XPathResultType result = function != null ? function.ReturnType : XPathResultType.
Any
;
94
result = XPathResultType.
Any
;
System\Xml\XPath\Internal\QueryBuilder.cs (2)
179
q.StaticType == XPathResultType.
Any
||
220
if (qyFilter != null && (propsCond & Props.HasPosition) == 0 && qyFilter.Condition.StaticType != XPathResultType.
Any
) {
System\Xml\XPath\Internal\SortQuery.cs (2)
42
qyInput.StaticType != XPathResultType.
Any
165
if (evalQuery.StaticType == XPathResultType.NodeSet || evalQuery.StaticType == XPathResultType.
Any
) {
System\Xml\XPath\Internal\Variable.cs (1)
23
public override XPathResultType ReturnType { get {return XPathResultType.
Any
; } }
System\Xml\XPath\Internal\VariableQuery.cs (2)
51
XPathResultType result = variable != null ? variable.VariableType : XPathResultType.
Any
;
54
result = XPathResultType.
Any
;
System\Xml\XPath\Internal\XPathParser.cs (4)
488
pi.ArgTypes[i] != XPathResultType.
Any
&&
493
if (!(arg is Variable) && !(arg is Function && arg.ReturnType == XPathResultType.
Any
) ) {
674
if (t != XPathResultType.NodeSet && t != XPathResultType.
Any
) {
682
static readonly XPathResultType[] temparray3 = {XPathResultType.
Any
};