2 instantiations of SchemaObjectCache
System.Private.Xml (2)
System\Xml\Serialization\ImportContext.cs (1)
32
internal SchemaObjectCache Cache => _cache ??= new
SchemaObjectCache
();
System\Xml\Serialization\XmlSchemas.cs (1)
58
internal SchemaObjectCache Cache => _cache ??= new
SchemaObjectCache
();
5 references to SchemaObjectCache
System.Private.Xml (5)
System\Xml\Serialization\ImportContext.cs (2)
19
private
SchemaObjectCache
? _cache; // cached schema top-level items
32
internal
SchemaObjectCache
Cache => _cache ??= new SchemaObjectCache();
System\Xml\Serialization\XmlSchemas.cs (3)
25
private
SchemaObjectCache
? _cache; // cached schema top-level items
58
internal
SchemaObjectCache
Cache => _cache ??= new SchemaObjectCache();
748
internal void SetCache(
SchemaObjectCache
cache, bool shareTypes)