1 implementation of IDtdEntityInfo
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaEntity.cs (1)
10internal sealed class SchemaEntity : IDtdEntityInfo
32 references to IDtdEntityInfo
dotnet-svcutil-lib (32)
FrameworkFork\Microsoft.Xml\Xml\Core\IDtdInfo.cs (1)
64IDtdEntityInfo LookupEntity(string name);
FrameworkFork\Microsoft.Xml\Xml\Core\IDtdParserAdapter.cs (2)
42bool PushEntity(IDtdEntityInfo entity, out int entityId); 44bool PopEntity(out IDtdEntityInfo oldEntity, out int newEntityId);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (11)
264private IDtdEntityInfo _lastEntity; 274private Dictionary<IDtdEntityInfo, IDtdEntityInfo> _currentEntities; 2614internal bool DtdParserProxy_PushEntity(IDtdEntityInfo entity, out int entityId) 2635internal bool DtdParserProxy_PopEntity(out IDtdEntityInfo oldEntity, out int newEntityId) 6149IDtdEntityInfo entity = null; 8129private bool PushExternalEntity(IDtdEntityInfo entity) 8171private void PushInternalEntity(IDtdEntityInfo entity) 8202private void RegisterEntity(IDtdEntityInfo entity) 8223_currentEntities = new Dictionary<IDtdEntityInfo, IDtdEntityInfo>();
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImplHelpers.cs (3)
62internal IDtdEntityInfo entity; 276bool IDtdParserAdapter.PushEntity(IDtdEntityInfo entity, out int entityId) 281bool IDtdParserAdapter.PopEntity(out IDtdEntityInfo oldEntity, out int newEntityId)
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (1)
3383IDtdEntityInfo oldEntity;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaEntity.cs (12)
40string IDtdEntityInfo.Name 45bool IDtdEntityInfo.IsExternal 50bool IDtdEntityInfo.IsDeclaredInExternal 55bool IDtdEntityInfo.IsUnparsedEntity 60bool IDtdEntityInfo.IsParameterEntity 65string IDtdEntityInfo.BaseUriString 70string IDtdEntityInfo.DeclaredUriString 75string IDtdEntityInfo.SystemId 80string IDtdEntityInfo.PublicId 85string IDtdEntityInfo.Text 90int IDtdEntityInfo.LineNumber 95int IDtdEntityInfo.LinePosition
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaInfo.cs (1)
448IDtdEntityInfo IDtdInfo.LookupEntity(string name)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (1)
2795IDtdEntityInfo entityInfo = null;