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

◆ ReadElementContentAsString() [1/2]

override string System.Xml.XmlDictionaryReader.ReadElementContentAsString ( )
inlinevirtualinherited

Reimplemented from System.Xml.XmlReader.

Definition at line 1090 of file XmlDictionaryReader.cs.

1091 {
1092 string result;
1094 {
1095 Read();
1096 result = string.Empty;
1097 }
1098 else
1099 {
1101 result = ReadContentAsString();
1103 }
1104 return result;
1105 }
virtual bool IsStartElement()
Definition XmlReader.cs:760
virtual void ReadStartElement()
Definition XmlReader.cs:629
virtual void ReadEndElement()
Definition XmlReader.cs:751

References System.Xml.XmlReader.IsEmptyElement, System.Xml.XmlReader.IsStartElement(), System.Xml.XmlReader.Read(), System.Xml.XmlDictionaryReader.ReadContentAsString(), System.Xml.XmlReader.ReadEndElement(), and System.Xml.XmlReader.ReadStartElement().