23 references to Prefix
System.Private.Xml (23)
System\Xml\Dom\DomNameTable.cs (4)
41
&& ((object)e.
Prefix
== (object)prefix
42
|| e.
Prefix
.Equals(prefix))
65
&& ((object)e.
Prefix
== (object)prefix
66
|| e.
Prefix
.Equals(prefix))
System\Xml\Dom\XmlAttribute.cs (3)
26
XmlDocument.CheckName(name.
Prefix
);
89
get { return _name.
Prefix
; }
412
if (_name.
Prefix
.Length == 0 && _name.LocalName == "xmlns") return string.Empty;
System\Xml\Dom\XmlAttributeCollection.cs (5)
344
if (attrname != null && attrname.
Prefix
== attr.XmlName.
Prefix
&& attrname.LocalName == attr.XmlName.LocalName)
361
if (attrname != null && attrname.
Prefix
== attr.XmlName.
Prefix
&& attrname.LocalName == attr.XmlName.LocalName)
392
if (attrname != null && attrname.
Prefix
== attrPrefix && attrname.LocalName == attrLocalName)
System\Xml\Dom\XmlDocument.cs (9)
217
Debug.Assert((prefix == null) ? (n.
Prefix
.Length == 0) : (prefix == n.
Prefix
));
226
Debug.Assert(n == null || ((prefix == null) ? (n.
Prefix
.Length == 0) : (prefix == n.
Prefix
)));
235
Debug.Assert((prefix == null) ? (xmlName.
Prefix
.Length == 0) : (prefix == xmlName.
Prefix
));
242
object oPrefix = xmlName.
Prefix
;
245
if ((oPrefix == (object)strXmlns || (xmlName.
Prefix
.Length == 0 && oLocalName == (object)strXmlns)) ^ (oNamespaceURI == (object)strReservedXmlns))
270
XmlName? newName = GetXmlName(eleName.
Prefix
, eleName.LocalName, string.Empty, null);
System\Xml\Dom\XmlElement.cs (2)
27
XmlDocument.CheckName(name.
Prefix
);
105
get { return _name.
Prefix
; }