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