2 writes to name
System.Private.Xml (2)
System\Xml\BinaryXml\XmlBinaryReader.cs (2)
151this.name = n; 160this.name = n;
15 references to name
System.Private.Xml (15)
System\Xml\BinaryXml\XmlBinaryReader.cs (15)
169localname = this.name.localname; 170namespaceUri = this.name.namespaceUri; 175localname = this.name.localname; 176namespaceUri = this.name.namespaceUri; 177return this.hashCode = this.name.GetNSHashCode(); 182return this.name.MatchNs(localname, namespaceUri); 187return this.hashCode == hash && this.name.MatchNs(localname, namespaceUri); 2372if (_attributes[i].name.MatchNs(name, ns)) 2386if (_attributes[i].name.MatchPrefix(prefix, lname)) 2397_qnameOther = _attributes[i - 1].name; 2459if (_attributes[i].name.prefix.Length != 0) 2460_attributes[i].name.CheckPrefixNS(prefix, ns); 2705throw new XmlException(SR.Xml_DupAttributeName, _attributes[i].name.ToString()); 2730throw new XmlException(SR.Xml_DupAttributeName, _attributes[i].name.ToString()); 2746sb.Append(_attributes[i].name.localname);