4 writes to prefix
System.Private.Xml (4)
System\Xml\BinaryXml\XmlBinaryReader.cs (4)
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; 3237_qnameOther.prefix = r.Prefix;
15 references to prefix
System.Private.Xml (15)
System\Xml\BinaryXml\XmlBinaryReader.cs (15)
87return lname == this.localname && prefix == this.prefix; 92if (this.prefix == prefix && this.namespaceUri != namespaceUri) 100this.prefix.GetHashCode() ^ this.localname.GetHashCode(); 106prefix == other.prefix && 115prefix.Length == 0 ? localname : $"{this.prefix}:{this.localname}"; 447return _qnameOther.prefix; 2459if (_attributes[i].name.prefix.Length != 0) 2609if (n.prefix == "xml") 2627else if (n.prefix.Length != 0) 2631this.PushNamespace(n.prefix, n.namespaceUri, true); 3049this.PushNamespace(qname.prefix, qname.namespaceUri, true); 4019if (qname.prefix.Length == 0) 4022return $"{qname.prefix}:{qname.localname}";