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