27 instantiations of ParamInfo
System.Xml (27)
System\Xml\XPath\Internal\XPathParser.cs (27)
712
table.Add("last" , new
ParamInfo
(Function.FunctionType.FuncLast , 0, 0, temparray1));
713
table.Add("position" , new
ParamInfo
(Function.FunctionType.FuncPosition , 0, 0, temparray1));
714
table.Add("name" , new
ParamInfo
(Function.FunctionType.FuncName , 0, 1, temparray2));
715
table.Add("namespace-uri" , new
ParamInfo
(Function.FunctionType.FuncNameSpaceUri , 0, 1, temparray2));
716
table.Add("local-name" , new
ParamInfo
(Function.FunctionType.FuncLocalName , 0, 1, temparray2));
717
table.Add("count" , new
ParamInfo
(Function.FunctionType.FuncCount , 1, 1, temparray2));
718
table.Add("id" , new
ParamInfo
(Function.FunctionType.FuncID , 1, 1, temparray3));
719
table.Add("string" , new
ParamInfo
(Function.FunctionType.FuncString , 0, 1, temparray3));
720
table.Add("concat" , new
ParamInfo
(Function.FunctionType.FuncConcat , 2, 100, temparray4));
721
table.Add("starts-with" , new
ParamInfo
(Function.FunctionType.FuncStartsWith , 2, 2, temparray5));
722
table.Add("contains" , new
ParamInfo
(Function.FunctionType.FuncContains , 2, 2, temparray5));
723
table.Add("substring-before" , new
ParamInfo
(Function.FunctionType.FuncSubstringBefore, 2, 2, temparray5));
724
table.Add("substring-after" , new
ParamInfo
(Function.FunctionType.FuncSubstringAfter , 2, 2, temparray5));
725
table.Add("substring" , new
ParamInfo
(Function.FunctionType.FuncSubstring , 2, 3, temparray6));
726
table.Add("string-length" , new
ParamInfo
(Function.FunctionType.FuncStringLength , 0, 1, temparray4));
727
table.Add("normalize-space" , new
ParamInfo
(Function.FunctionType.FuncNormalize , 0, 1, temparray4));
728
table.Add("translate" , new
ParamInfo
(Function.FunctionType.FuncTranslate , 3, 3, temparray7));
729
table.Add("boolean" , new
ParamInfo
(Function.FunctionType.FuncBoolean , 1, 1, temparray3));
730
table.Add("not" , new
ParamInfo
(Function.FunctionType.FuncNot , 1, 1, temparray8));
731
table.Add("true" , new
ParamInfo
(Function.FunctionType.FuncTrue , 0, 0 ,temparray8));
732
table.Add("false" , new
ParamInfo
(Function.FunctionType.FuncFalse , 0, 0, temparray8));
733
table.Add("lang" , new
ParamInfo
(Function.FunctionType.FuncLang , 1, 1, temparray4));
734
table.Add("number" , new
ParamInfo
(Function.FunctionType.FuncNumber , 0, 1, temparray3));
735
table.Add("sum" , new
ParamInfo
(Function.FunctionType.FuncSum , 1, 1, temparray2));
736
table.Add("floor" , new
ParamInfo
(Function.FunctionType.FuncFloor , 1, 1, temparray9));
737
table.Add("ceiling" , new
ParamInfo
(Function.FunctionType.FuncCeiling , 1, 1, temparray9));
738
table.Add("round" , new
ParamInfo
(Function.FunctionType.FuncRound , 1, 1, temparray9));
4 references to ParamInfo
System.Xml (4)
System\Xml\XPath\Internal\XPathParser.cs (4)
463
ParamInfo
pi = (
ParamInfo
) functionTable[name];
576
ParamInfo
pi = (
ParamInfo
) functionTable["id"];