2 writes to xnt
System.Xml (2)
System\Xml\BinaryXml\XmlBinaryReader.cs (2)
317this.xnt = settings.NameTable; 319this.xnt = new NameTable();
21 references to xnt
System.Xml (21)
System\Xml\BinaryXml\XmlBinaryReader.cs (21)
318if (this.xnt == null) { 325this.xml = this.xnt.Add("xml"); 326this.xmlns = this.xnt.Add("xmlns"); 327this.nsxmlns = this.xnt.Add(XmlReservedNs.NsXmlNs); 345AddInitNamespace(this.xml, this.xnt.Add(XmlReservedNs.NsXml)); 390settings.NameTable = xnt; 795return this.xnt; 1636namespaceName = this.xnt.Get(namespaceName); 1676symtable[symNum] = xnt.Add(txt); 1705lnameStr = this.xnt.Add(prefixStr.Substring(6)); 2202name = new QName(this.xmlns, xnt.Add(decl.prefix), this.nsxmlns); 2237this.attributes[0].Set(new QName(string.Empty, this.xnt.Add("version"), string.Empty), ParseText()); 2241this.attributes[1].Set(new QName(string.Empty, this.xnt.Add("encoding"), string.Empty), ParseText()); 2251this.attributes[this.attrCount].Set(new QName(string.Empty, this.xnt.Add("standalone"), string.Empty), (standalone == 1) ? "yes" : "no"); 2259QName xmlDeclQName = new QName(String.Empty, this.xnt.Add("xml"), String.Empty); 2340string nsuri = this.xnt.Add(ValueAsString(token)); 2766this.attributes[this.attrCount++].Set(new QName(string.Empty, this.xnt.Add("SYSTEM"), string.Empty), ParseText()); 2770this.attributes[this.attrCount++].Set(new QName(string.Empty, this.xnt.Add("PUBLIC"), string.Empty), ParseText()); 2822XmlNamespaceManager xnm = new XmlNamespaceManager(this.xnt); 2836settings.NameTable = this.xnt; 2842XmlParserContext xpc = new XmlParserContext(this.xnt, xnm, this.XmlLang, this.XmlSpace);