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