6 writes to localname
System.Private.Xml (6)
System\Xml\BinaryXml\XmlBinaryReader.cs (6)
68this.prefix = prefix; this.localname = lname; this.namespaceUri = nsUri; 72this.prefix = prefix; this.localname = lname; this.namespaceUri = nsUri; 77this.prefix = this.localname = this.namespaceUri = string.Empty; 3123_qnameOther.localname = ParseText(); 3150_qnameOther.localname = _symbolTables.symtable[ReadNameRef()]; 3238_qnameOther.localname = r.LocalName;
21 references to localname
System.Private.Xml (21)
System\Xml\BinaryXml\XmlBinaryReader.cs (21)
82return lname == this.localname && nsUri == this.namespaceUri; 87return lname == this.localname && prefix == this.prefix; 97HashCode.Combine(this.namespaceUri, this.localname); 100this.prefix.GetHashCode() ^ this.localname.GetHashCode(); 107localname == other.localname && 115prefix.Length == 0 ? localname : $"{this.prefix}:{this.localname}"; 169localname = this.name.localname; 175localname = this.name.localname; 431return _qnameOther.localname; 2611if (n.localname == "lang") 2615else if (n.localname == "space") 2623curDeclPrefix = n.localname; 2635throw CreateXmlException(SR.XmlBinary_AttrWithNsNoPrefix, n.localname, n.namespaceUri); 2746sb.Append(_attributes[i].name.localname); 2824if (_qnameOther.localname.Length != 0) 4020return qname.localname; 4022return $"{qname.prefix}:{qname.localname}"; 4168return new XmlQualifiedName(qname.localname, qname.namespaceUri); 4367new XmlQualifiedName(qname.localname, qname.namespaceUri),