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