Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CreateFunctionTable()

static Hashtable System.Xml.Xsl.XsltOld.XsltCompileContext.CreateFunctionTable ( )
inlinestaticprivate

Definition at line 894 of file XsltCompileContext.cs.

895 {
896 Hashtable hashtable = new Hashtable(10);
897 hashtable["current"] = new FuncCurrent();
898 hashtable["unparsed-entity-uri"] = new FuncUnEntityUri();
899 hashtable["generate-id"] = new FuncGenerateId();
900 hashtable["system-property"] = new FuncSystemProp();
901 hashtable["element-available"] = new FuncElementAvailable();
902 hashtable["function-available"] = new FuncFunctionAvailable();
903 hashtable["document"] = new FuncDocument();
904 hashtable["key"] = new FuncKey();
905 hashtable["format-number"] = new FuncFormatNumber();
906 return hashtable;
907 }