1 implementation of IDtdAttributeListInfo
System.Xml (1)
System\Xml\Schema\SchemaElementDecl.cs (1)
15internal sealed class SchemaElementDecl : SchemaDeclBase, IDtdAttributeListInfo {
14 references to IDtdAttributeListInfo
System.Xml (14)
System\Xml\Cache\XPathDocumentBuilder.cs (1)
533foreach (IDtdAttributeListInfo attrList in dtdInfo.GetAttributeLists()) {
System\Xml\Core\IDtdInfo.cs (2)
52IDtdAttributeListInfo LookupAttributeList(string prefix, string localName); 57IEnumerable<IDtdAttributeListInfo> GetAttributeLists();
System\Xml\Core\XmlTextReaderImpl.cs (1)
4059IDtdAttributeListInfo attlistInfo = dtdInfo.LookupAttributeList( curNode.localName, curNode.prefix );
System\Xml\Schema\SchemaElementDecl.cs (6)
69string IDtdAttributeListInfo.Prefix { 73string IDtdAttributeListInfo.LocalName { 77bool IDtdAttributeListInfo.HasNonCDataAttributes { 81IDtdAttributeInfo IDtdAttributeListInfo.LookupAttribute(string prefix, string localName) { 90IEnumerable<IDtdDefaultAttributeInfo> IDtdAttributeListInfo.LookupDefaultAttributes() { 94IDtdAttributeInfo IDtdAttributeListInfo.LookupIdAttribute() {
System\Xml\Schema\SchemaInfo.cs (4)
353IDtdAttributeListInfo IDtdInfo.LookupAttributeList(string prefix, string localName) { 362IEnumerable<IDtdAttributeListInfo> IDtdInfo.GetAttributeLists() { 364IDtdAttributeListInfo eleDeclAsAttList = (IDtdAttributeListInfo)elemDecl;