1 implementation of IDtdAttributeListInfo
System.Private.Xml (1)
System\Xml\Schema\SchemaElementDecl.cs (1)
11internal sealed class SchemaElementDecl : SchemaDeclBase, IDtdAttributeListInfo
14 references to IDtdAttributeListInfo
System.Private.Xml (14)
System\Xml\Cache\XPathDocumentBuilder.cs (1)
597foreach (IDtdAttributeListInfo attrList in dtdInfo.GetAttributeLists())
System\Xml\Core\IDtdInfo.cs (2)
47IDtdAttributeListInfo? LookupAttributeList(string prefix, string localName); 52IEnumerable<IDtdAttributeListInfo> GetAttributeLists();
System\Xml\Core\XmlTextReaderImpl.cs (1)
4454IDtdAttributeListInfo? attlistInfo = _dtdInfo.LookupAttributeList(_curNode.localName, _curNode.prefix);
System\Xml\Schema\SchemaElementDecl.cs (6)
64string IDtdAttributeListInfo.Prefix 69string IDtdAttributeListInfo.LocalName 74bool IDtdAttributeListInfo.HasNonCDataAttributes 79IDtdAttributeInfo? IDtdAttributeListInfo.LookupAttribute(string? prefix, string? localName) 90IEnumerable<IDtdDefaultAttributeInfo> IDtdAttributeListInfo.LookupDefaultAttributes() 95IDtdAttributeInfo? IDtdAttributeListInfo.LookupIdAttribute()
System\Xml\Schema\SchemaInfo.cs (4)
368IDtdAttributeListInfo? IDtdInfo.LookupAttributeList(string prefix, string localName) 379IEnumerable<IDtdAttributeListInfo> IDtdInfo.GetAttributeLists() 383IDtdAttributeListInfo eleDeclAsAttList = (IDtdAttributeListInfo)elemDecl;