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

◆ GetXmlTextReaderImpl()

static XmlTextReaderImpl System.Xml.XmlReader.GetXmlTextReaderImpl ( XmlReader reader)
inlinestaticprivateinherited

Definition at line 1313 of file XmlReader.cs.

1314 {
1315 if (reader is XmlTextReaderImpl result)
1316 {
1317 return result;
1318 }
1319 if (reader is XmlTextReader xmlTextReader)
1320 {
1321 return xmlTextReader.Impl;
1322 }
1323 if (reader is XmlValidatingReaderImpl xmlValidatingReaderImpl)
1324 {
1325 return xmlValidatingReaderImpl.ReaderImpl;
1326 }
1327 if (reader is XmlValidatingReader xmlValidatingReader)
1328 {
1329 return xmlValidatingReader.Impl.ReaderImpl;
1330 }
1331 return null;
1332 }

References System.Xml.Dictionary.

Referenced by System.Xml.XmlReader.GetV1ConformanceLevel().