8 references to GetXPathType
System.Xml (8)
System\Xml\XPath\Internal\IdQuery.cs (1)
25switch (GetXPathType(argVal)) {
System\Xml\XPath\Internal\LogicalExpr.cs (2)
46int type1 = (int)GetXPathType(val1); 47int type2 = (int)GetXPathType(val2);
System\Xml\XPath\Internal\NumberFunctions.cs (1)
60switch (GetXPathType(argVal)) {
System\Xml\XPath\Internal\OperandQuery.cs (1)
26public override XPathResultType StaticType { get { return GetXPathType(val); } }
System\Xml\XPath\Internal\StringFunctions.cs (2)
71switch (GetXPathType(argVal)) { 82Debug.Assert(GetXPathType(argVal) == XPathResultType.Number);
System\Xml\XPath\Internal\VariableQuery.cs (1)
49return GetXPathType(Evaluate(null));