4 writes to namespaceUri
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; 3239_qnameOther.namespaceUri = r.NamespaceURI;
17 references to namespaceUri
System.Private.Xml (17)
System\Xml\BinaryXml\XmlBinaryReader.cs (17)
82return lname == this.localname && nsUri == this.namespaceUri; 92if (this.prefix == prefix && this.namespaceUri != namespaceUri) 93throw new XmlException(SR.XmlBinary_NoRemapPrefix, new string[] { prefix, this.namespaceUri, namespaceUri }); 97HashCode.Combine(this.namespaceUri, this.localname); 108namespaceUri == other.namespaceUri; 170namespaceUri = this.name.namespaceUri; 176namespaceUri = this.name.namespaceUri; 439return _qnameOther.namespaceUri; 2620else if (Ref.Equal(n.namespaceUri, _nsxmlns)) 2629if (n.namespaceUri.Length == 0) 2631this.PushNamespace(n.prefix, n.namespaceUri, true); 2633else if (n.namespaceUri.Length != 0) 2635throw CreateXmlException(SR.XmlBinary_AttrWithNsNoPrefix, n.localname, n.namespaceUri); 3049this.PushNamespace(qname.prefix, qname.namespaceUri, true); 4168return new XmlQualifiedName(qname.localname, qname.namespaceUri); 4367new XmlQualifiedName(qname.localname, qname.namespaceUri),