3 instantiations of StringFunctions
System.Private.Xml (3)
System\Xml\XPath\Internal\QueryBuilder.cs (1)
394return new StringFunctions(root.TypeOfFunction, ProcessArguments(root.ArgumentList, out props));
System\Xml\XPath\Internal\SortQuery.cs (1)
180evalQuery = new StringFunctions(Function.FunctionType.FuncString, new Query[] { evalQuery });
System\Xml\XPath\Internal\StringFunctions.cs (1)
285public override XPathNodeIterator Clone() { return new StringFunctions(this); }
3 references to StringFunctions
System.Private.Xml (3)
System\Xml\XPath\Internal\IdQuery.cs (2)
34ProcessIds(contextNode, StringFunctions.toString((double)argVal)); 37ProcessIds(contextNode, StringFunctions.toString((bool)argVal));
System\Xml\XPath\Internal\StringFunctions.cs (1)
26private StringFunctions(StringFunctions other) : base(other)