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

◆ WriteEndElement()

void System.Xml.Xsl.XsltOld.SequentialOutput.WriteEndElement ( RecordBuilder record)
inlineprivateinherited

Definition at line 251 of file SequentialOutput.cs.

252 {
253 HtmlElementProps htmlElementProps = record.Manager.CurrentElementScope.HtmlElementProps;
254 if (htmlElementProps == null || !htmlElementProps.Empty)
255 {
256 Indent(record);
257 Write("</");
258 WriteName(record.MainNode.Prefix, record.MainNode.LocalName);
259 Write('>');
260 }
261 }
void WriteName(string prefix, string name)

References System.Xml.Dictionary, System.Xml.Xsl.XsltOld.SequentialOutput.Indent(), System.Xml.Xsl.XsltOld.SequentialOutput.Write(), and System.Xml.Xsl.XsltOld.SequentialOutput.WriteName().

Referenced by System.Xml.Xsl.XsltOld.SequentialOutput.OutputRecord().