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

◆ XmlTextReaderImpl() [7/20]

System.Xml.XmlTextReaderImpl.XmlTextReaderImpl ( string url,
Stream input,
XmlNameTable nt )
inlinepackage

Definition at line 1571 of file XmlTextReaderImpl.cs.

1572 : this(nt)
1573 {
1574 _namespaceManager = new XmlNamespaceManager(nt);
1575 if (url == null || url.Length == 0)
1576 {
1577 InitStreamInput(input, null);
1578 }
1579 else
1580 {
1581 InitStreamInput(url, input, null);
1582 }
1585 }
XmlNamespaceManager _namespaceManager
void InitStreamInput(Stream stream, Encoding encoding)

References System.Xml.XmlTextReaderImpl._namespaceManager, System.Xml.XmlTextReaderImpl._ps, System.Xml.XmlTextReaderImpl._reportedBaseUri, System.Xml.XmlTextReaderImpl._reportedEncoding, System.Xml.XmlTextReaderImpl.ParsingState.baseUriStr, System.Xml.XmlTextReaderImpl.ParsingState.encoding, System.Xml.XmlTextReaderImpl.InitStreamInput(), and System.input.