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)
26XmlDocument.CheckName(name.Prefix); 89get { return _name.Prefix; } 412if (_name.Prefix.Length == 0 && _name.LocalName == "xmlns") return string.Empty;
System\Xml\Dom\XmlAttributeCollection.cs (5)
344if (attrname != null && attrname.Prefix == attr.XmlName.Prefix && attrname.LocalName == attr.XmlName.LocalName) 361if (attrname != null && attrname.Prefix == attr.XmlName.Prefix && attrname.LocalName == attr.XmlName.LocalName) 392if (attrname != null && attrname.Prefix == attrPrefix && attrname.LocalName == attrLocalName)
System\Xml\Dom\XmlDocument.cs (9)
217Debug.Assert((prefix == null) ? (n.Prefix.Length == 0) : (prefix == n.Prefix)); 226Debug.Assert(n == null || ((prefix == null) ? (n.Prefix.Length == 0) : (prefix == n.Prefix))); 235Debug.Assert((prefix == null) ? (xmlName.Prefix.Length == 0) : (prefix == xmlName.Prefix)); 242object oPrefix = xmlName.Prefix; 245if ((oPrefix == (object)strXmlns || (xmlName.Prefix.Length == 0 && oLocalName == (object)strXmlns)) ^ (oNamespaceURI == (object)strReservedXmlns)) 270XmlName? newName = GetXmlName(eleName.Prefix, eleName.LocalName, string.Empty, null);
System\Xml\Dom\XmlElement.cs (2)
27XmlDocument.CheckName(name.Prefix); 105get { return _name.Prefix; }