6 writes to localname
System.Xml (6)
System\Xml\BinaryXml\XmlBinaryReader.cs (6)
68
this.prefix = prefix; this.
localname
= lname; this.namespaceUri = nsUri;
71
this.prefix = prefix; this.
localname
= lname; this.namespaceUri = nsUri;
75
this.prefix = this.
localname
= this.namespaceUri = String.Empty;
2763
this.qnameOther.
localname
= ParseText();
2785
this.qnameOther.
localname
= this.symbolTables.symtable[ReadNameRef()];
2860
this.qnameOther.
localname
= r.LocalName;
21 references to localname
System.Xml (21)
System\Xml\BinaryXml\XmlBinaryReader.cs (21)
79
return lname == this.
localname
&& nsUri == this.namespaceUri;
82
return lname == this.
localname
&& prefix == this.prefix;
91
return this.prefix.GetHashCode() ^ this.
localname
.GetHashCode();
95
return hasher.GetHashCode(this.namespaceUri) ^ hasher.GetHashCode(this.
localname
);
109
return this.
localname
;
111
return this.prefix + ":" + this.
localname
;
116
&& (a.
localname
== b.
localname
)
168
localname = this.name.
localname
;
173
localname = this.name.
localname
;
421
return this.qnameOther.
localname
;
2297
if (n.
localname
== "lang") {
2300
else if (n.
localname
== "space") {
2306
curDeclPrefix = n.
localname
;
2316
throw ThrowXmlException(Res.XmlBinary_AttrWithNsNoPrefix, n.
localname
, n.namespaceUri);
2408
sb.Append(this.attributes[i].name.
localname
);
2481
if (this.qnameOther.
localname
.Length != 0)
3576
return qname.
localname
;
3578
return String.Concat( qname.prefix, ":", qname.
localname
);
3713
return new XmlQualifiedName(qname.
localname
, qname.namespaceUri);
3897
new XmlQualifiedName(qname.
localname
, qname.namespaceUri),