1 type derived from XmlName
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlName.cs (1)
201
internal sealed class XmlNameEx :
XmlName
1 instantiation of XmlName
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlName.cs (1)
27
return new
XmlName
(prefix, localName, ns, hashCode, ownerDoc, next);
45 references to XmlName
dotnet-svcutil-lib (45)
FrameworkFork\Microsoft.Xml\Xml\Dom\DomNameTable.cs (15)
16
private
XmlName
[] _entries;
28
_entries = new
XmlName
[InitialSize];
33
public
XmlName
GetName(string prefix, string localName, string ns, IXmlSchemaInfo schemaInfo)
44
int hashCode =
XmlName
.GetHashCode(localName);
46
for (
XmlName
e = _entries[hashCode & _mask]; e != null; e = e.next)
63
public
XmlName
AddName(string prefix, string localName, string ns, IXmlSchemaInfo schemaInfo)
74
int hashCode =
XmlName
.GetHashCode(localName);
76
for (
XmlName
e = _entries[hashCode & _mask]; e != null; e = e.next)
95
XmlName
name =
XmlName
.Create(prefix, localName, ns, hashCode, _ownerDocument, _entries[index], schemaInfo);
109
XmlName
[] oldEntries = _entries;
110
XmlName
[] newEntries = new
XmlName
[newMask + 1];
115
XmlName
name = oldEntries[i];
119
XmlName
tmp = name.next;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (3)
16
private
XmlName
_name;
19
internal XmlAttribute(
XmlName
name, XmlDocument doc) : base(doc)
44
internal
XmlName
XmlName
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttributeCollection.cs (5)
42
int hash =
XmlName
.GetHashCode(name);
65
int hash =
XmlName
.GetHashCode(localName);
335
XmlName
attrname = parent.OwnerDocument.GetIDInfoByElement(parentElem.XmlName);
351
XmlName
attrname = parent.OwnerDocument.GetIDInfoByElement(parentElem.XmlName);
382
XmlName
attrname = doc.GetIDInfoByElement(parentElem.XmlName);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (14)
138
internal
XmlName
AddXmlName(string prefix, string localName, string namespaceURI, IXmlSchemaInfo schemaInfo)
140
XmlName
n = _domNameTable.AddName(prefix, localName, namespaceURI, schemaInfo);
147
internal
XmlName
GetXmlName(string prefix, string localName, string namespaceURI, IXmlSchemaInfo schemaInfo)
149
XmlName
n = _domNameTable.GetName(prefix, localName, namespaceURI, schemaInfo);
156
internal
XmlName
AddAttrXmlName(string prefix, string localName, string namespaceURI, IXmlSchemaInfo schemaInfo)
158
XmlName
xmlName = AddXmlName(prefix, localName, namespaceURI, schemaInfo);
175
internal bool AddIdInfo(
XmlName
eleName,
XmlName
attrName)
190
private
XmlName
GetIDInfoByElement_(
XmlName
eleName)
195
XmlName
newName = GetXmlName(eleName.Prefix, eleName.LocalName, string.Empty, null);
198
return (
XmlName
)(_htElementIDAttrDecl[newName]);
203
internal
XmlName
GetIDInfoByElement(
XmlName
eleName)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (3)
19
private
XmlName
_name;
23
internal XmlElement(
XmlName
name, bool empty, XmlDocument doc) : base(doc)
46
internal
XmlName
XmlName
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlName.cs (5)
21
internal
XmlName
next;
23
public static
XmlName
Create(string prefix, string localName, string ns, int hashCode, XmlDocument ownerDoc,
XmlName
next, IXmlSchemaInfo schemaInfo)
35
internal XmlName(string prefix, string localName, string ns, int hashCode, XmlDocument ownerDoc,
XmlName
next)
216
internal XmlNameEx(string prefix, string localName, string ns, int hashCode, XmlDocument ownerDoc,
XmlName
next, IXmlSchemaInfo schemaInfo) : base(prefix, localName, ns, hashCode, ownerDoc, next)