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