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

◆ WriteFullEndElement()

override void System.Xml.XmlBaseWriter.WriteFullEndElement ( )
inlineinherited

Definition at line 1147 of file XmlBaseWriter.cs.

1148 {
1149 if (IsClosed)
1150 {
1151 ThrowClosed();
1152 }
1153 if (_writeState == WriteState.Attribute)
1154 {
1156 }
1157 if (_writeState != WriteState.Element && _writeState != WriteState.Content)
1158 {
1160 }
1161 AutoComplete(WriteState.Content);
1163 }
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string XmlInvalidWriteState
Definition SR.cs:450
Definition SR.cs:7
override void WriteEndElement()
override void WriteEndAttribute()
void AutoComplete(WriteState writeState)

References System.Xml.XmlBaseWriter._writeState, System.Xml.XmlBaseWriter.AutoComplete(), System.SR.Format(), System.Xml.XmlBaseWriter.IsClosed, System.Xml.XmlBaseWriter.ThrowClosed(), System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(), System.Xml.XmlBaseWriter.WriteEndAttribute(), System.Xml.XmlBaseWriter.WriteEndElement(), and System.SR.XmlInvalidWriteState.