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

◆ GetAttribute() [2/4]

override string System.Xml.XmlSqlBinaryReader.GetAttribute ( string name)
inline

Definition at line 685 of file XmlSqlBinaryReader.cs.

686 {
687 if (ScanState.XmlText == _state)
688 {
689 return _textXmlReader.GetAttribute(name);
690 }
691 int num = LocateAttribute(name);
692 if (-1 == num)
693 {
694 return null;
695 }
696 return GetAttribute(num);
697 }
string? GetAttribute(string name)
int LocateAttribute(string name, string ns)
override string GetAttribute(string name, string ns)

References System.Xml.XmlSqlBinaryReader._state, System.Xml.XmlSqlBinaryReader._textXmlReader, System.Xml.XmlReader.GetAttribute(), System.Xml.XmlSqlBinaryReader.GetAttribute(), and System.Xml.XmlSqlBinaryReader.LocateAttribute().