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

◆ EvaluateString()

string System.Xml.Xsl.XsltOld.Processor.EvaluateString ( ActionFrame context,
int key )
inlinepackage

Definition at line 506 of file Processor.cs.

507 {
508 object obj = Evaluate(context, key);
509 string text = null;
510 if (obj != null)
511 {
512 text = XmlConvert.ToXPathString(obj);
513 }
514 if (text == null)
515 {
516 text = string.Empty;
517 }
518 return text;
519 }
object Evaluate(ActionFrame context, int key)
Definition Processor.cs:490

References System.Xml.Xsl.XsltOld.Processor.Evaluate(), System.key, System.obj, System.text, and System.Xml.XmlConvert.ToXPathString().