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

◆ LoadAttributeNodeDirect()

XmlAttribute System.Xml.XmlLoader.LoadAttributeNodeDirect ( )
inlineprivate

Definition at line 463 of file XmlLoader.cs.

464 {
465 XmlReader reader = _reader;
466 if (reader.IsDefault)
467 {
468 XmlUnspecifiedAttribute xmlUnspecifiedAttribute = new XmlUnspecifiedAttribute(reader.Prefix, reader.LocalName, reader.NamespaceURI, _doc);
470 xmlUnspecifiedAttribute.SetSpecified(f: false);
472 }
473 XmlAttribute xmlAttribute = new XmlAttribute(reader.Prefix, reader.LocalName, reader.NamespaceURI, _doc);
475 return xmlAttribute;
476 }
XmlDocument _doc
Definition XmlLoader.cs:9
void LoadAttributeValue(XmlNode parent, bool direct)
Definition XmlLoader.cs:264

References System.Xml.XmlLoader._doc, System.Xml.XmlLoader._reader, System.Xml.Dictionary, System.Xml.XmlReader.IsDefault, System.Xml.XmlLoader.LoadAttributeValue(), System.Xml.XmlReader.LocalName, System.Xml.XmlReader.NamespaceURI, and System.Xml.XmlReader.Prefix.

Referenced by System.Xml.XmlLoader.LoadNodeDirect().