22 references to Prefix
dotnet-svcutil-lib (22)
FrameworkFork\Microsoft.Xml\Xml\Dom\DomNameTable.cs (4)
51
&& ((object)e.
Prefix
== (object)prefix
52
|| e.
Prefix
.Equals(prefix))
81
&& ((object)e.
Prefix
== (object)prefix
82
|| e.
Prefix
.Equals(prefix))
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (3)
26
XmlDocument.CheckName(name.
Prefix
);
88
get { return _name.
Prefix
; }
408
if (_name.
Prefix
.Length == 0 && _name.LocalName == "xmlns") return string.Empty;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttributeCollection.cs (5)
336
if (attrname != null && attrname.
Prefix
== attr.XmlName.
Prefix
&& attrname.LocalName == attr.XmlName.LocalName)
352
if (attrname != null && attrname.
Prefix
== attr.XmlName.
Prefix
&& attrname.LocalName == attr.XmlName.LocalName)
383
if (attrname != null && attrname.
Prefix
== attrPrefix && attrname.LocalName == attrLocalName)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (8)
141
Debug.Assert((prefix == null) ? (n.
Prefix
.Length == 0) : (prefix == n.
Prefix
));
150
Debug.Assert(n == null || ((prefix == null) ? (n.
Prefix
.Length == 0) : (prefix == n.
Prefix
)));
159
Debug.Assert((prefix == null) ? (xmlName.
Prefix
.Length == 0) : (prefix == xmlName.
Prefix
));
166
object oPrefix = xmlName.
Prefix
;
195
XmlName newName = GetXmlName(eleName.
Prefix
, eleName.LocalName, string.Empty, null);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (2)
29
XmlDocument.CheckName(name.
Prefix
);
101
get { return _name.
Prefix
; }