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