4 writes to namespaceUri
System.Xml (4)
System\Xml\BinaryXml\XmlBinaryReader.cs (4)
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; 2861this.qnameOther.namespaceUri = r.NamespaceURI;
17 references to namespaceUri
System.Xml (17)
System\Xml\BinaryXml\XmlBinaryReader.cs (17)
79return lname == this.localname && nsUri == this.namespaceUri; 86if (this.prefix == prefix && this.namespaceUri != namespaceUri) 87throw new XmlException(Res.XmlBinary_NoRemapPrefix, new String[] { prefix, this.namespaceUri, namespaceUri }); 95return hasher.GetHashCode(this.namespaceUri) ^ hasher.GetHashCode(this.localname); 117&& (a.namespaceUri == b.namespaceUri)); 169namespaceUri = this.name.namespaceUri; 174namespaceUri = this.name.namespaceUri; 427return this.qnameOther.namespaceUri; 2304else if (Ref.Equal(n.namespaceUri, this.nsxmlns)) { 2311if (n.namespaceUri.Length == 0) 2313this.PushNamespace(n.prefix, n.namespaceUri, true); 2315else if (n.namespaceUri.Length != 0) { 2316throw ThrowXmlException(Res.XmlBinary_AttrWithNsNoPrefix, n.localname, n.namespaceUri); 2699this.PushNamespace(qname.prefix, qname.namespaceUri, true); 3713return new XmlQualifiedName(qname.localname, qname.namespaceUri); 3897new XmlQualifiedName(qname.localname, qname.namespaceUri),