7 references to XmlTextReaderImpl
System.Private.Xml (7)
System\Xml\Core\XmlTextReader.cs (1)
34_impl = new XmlTextReaderImpl(nt);
System\Xml\Core\XmlTextReaderImpl.cs (6)
461internal XmlTextReaderImpl(string? url, Stream input, XmlNameTable nt) : this(nt) 493internal XmlTextReaderImpl(string? url, TextReader input, XmlNameTable nt) : this(nt) 506: this((context != null && context.NameTable != null) ? context.NameTable : new NameTable()) 529: this(null == context || null == context.NameTable ? new NameTable() : context.NameTable) 553: this(null == context || null == context.NameTable ? new NameTable() : context.NameTable) 565public XmlTextReaderImpl(string url, XmlNameTable nt) : this(nt)