6 instantiations of SchemaEntity
System.Private.Xml (6)
System\Xml\Core\XmlTextReaderImpl.cs (2)
6038SchemaEntity schemaEntity = new SchemaEntity(new XmlQualifiedName(name), false); 6052SchemaEntity schemaEntity = new SchemaEntity(new XmlQualifiedName(name), false);
System\Xml\Core\XmlTextReaderImplAsync.cs (2)
3824SchemaEntity schemaEntity = new SchemaEntity(new XmlQualifiedName(name), false); 3837SchemaEntity schemaEntity = new SchemaEntity(new XmlQualifiedName(name), false);
System\Xml\Schema\DtdParser.cs (1)
1225entity = new SchemaEntity(entityName, isParamEntity);
System\Xml\Schema\DtdParserAsync.cs (1)
856entity = new SchemaEntity(entityName, isParamEntity);
27 references to SchemaEntity
System.Private.Xml (27)
System\Xml\Core\XmlTextReaderImpl.cs (2)
6038SchemaEntity schemaEntity = new SchemaEntity(new XmlQualifiedName(name), false); 6052SchemaEntity schemaEntity = new SchemaEntity(new XmlQualifiedName(name), false);
System\Xml\Core\XmlTextReaderImplAsync.cs (2)
3824SchemaEntity schemaEntity = new SchemaEntity(new XmlQualifiedName(name), false); 3837SchemaEntity schemaEntity = new SchemaEntity(new XmlQualifiedName(name), false);
System\Xml\Dom\XmlLoader.cs (2)
637foreach (SchemaEntity scEnt in schInfo.GeneralEntities.Values) 647foreach (SchemaEntity scEnt in schInfo.ParameterEntities.Values)
System\Xml\Schema\BaseValidator.cs (2)
294SchemaEntity? en; 321SchemaEntity? en;
System\Xml\Schema\DtdParser.cs (4)
1210SchemaEntity? entity; 3260SchemaEntity? entity = VerifyEntityReference(entityName, paramEntity, true, inAttribute); 3340private SchemaEntity? VerifyEntityReference(XmlQualifiedName entityName, bool paramEntity, bool mustBeDeclared, bool inAttribute) 3344SchemaEntity? entity;
System\Xml\Schema\DtdParserAsync.cs (2)
841SchemaEntity? entity; 2590SchemaEntity? entity = VerifyEntityReference(entityName, paramEntity, true, inAttribute);
System\Xml\Schema\DtdValidator.cs (4)
436else if (SchemaEntity.IsPredefinedEntity(n)) 442SchemaEntity? en = GetEntity(qname, false); 463private SchemaEntity? GetEntity(XmlQualifiedName qname, bool fParameterEntity) 465SchemaEntity? entity;
System\Xml\Schema\SchemaEntity.cs (2)
46get { return ((SchemaEntity)this).IsExternal; } 86get { return ((SchemaEntity)this).Text; }
System\Xml\Schema\SchemaInfo.cs (7)
30private Dictionary<XmlQualifiedName, SchemaEntity>? _generalEntities; 31private Dictionary<XmlQualifiedName, SchemaEntity>? _parameterEntities; 73internal Dictionary<XmlQualifiedName, SchemaEntity> GeneralEntities => 74_generalEntities ??= new Dictionary<XmlQualifiedName, SchemaEntity>(); 76internal Dictionary<XmlQualifiedName, SchemaEntity> ParameterEntities => 77_parameterEntities ??= new Dictionary<XmlQualifiedName, SchemaEntity>(); 395SchemaEntity? entity;