FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (10)
386nt = new NameTable();
464internal XmlTextReaderImpl(Stream input) : this(string.Empty, input, new NameTable())
470internal XmlTextReaderImpl(string url, Stream input) : this(url, input, new NameTable())
490internal XmlTextReaderImpl(TextReader input) : this(string.Empty, input, new NameTable())
496internal XmlTextReaderImpl(string url, TextReader input) : this(url, input, new NameTable())
513: this((context != null && context.NameTable != null) ? context.NameTable : new NameTable())
535: this(null == context || null == context.NameTable ? new NameTable() : context.NameTable)
561: this(null == context || null == context.NameTable ? new NameTable() : context.NameTable)
571public XmlTextReaderImpl(string url) : this(url, new NameTable())
9158nt = new NameTable();