4 writes to prefix
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;
2859
this.qnameOther.
prefix
= r.Prefix;
15 references to prefix
System.Xml (15)
System\Xml\BinaryXml\XmlBinaryReader.cs (15)
82
return lname == this.localname && prefix == this.
prefix
;
86
if (this.
prefix
== prefix && this.namespaceUri != namespaceUri)
91
return this.
prefix
.GetHashCode() ^ this.localname.GetHashCode();
108
if (
prefix
.Length == 0)
111
return this.
prefix
+ ":" + this.localname;
115
return ((a.
prefix
== b.
prefix
)
433
return this.qnameOther.
prefix
;
2164
if (this.attributes[i].name.
prefix
.Length != 0)
2296
if (n.
prefix
== "xml") {
2310
else if (n.
prefix
.Length != 0) {
2313
this.PushNamespace(n.
prefix
, n.namespaceUri, true);
2699
this.PushNamespace(qname.
prefix
, qname.namespaceUri, true);
3575
if ( qname.
prefix
.Length == 0 )
3578
return String.Concat( qname.
prefix
, ":", qname.localname );