2 instantiations of SchemaObjectCache
System.Private.Xml (2)
System\Xml\Serialization\ImportContext.cs (1)
29
internal SchemaObjectCache Cache => field ??= new
SchemaObjectCache
(); // cached schema top-level items
System\Xml\Serialization\XmlSchemas.cs (1)
56
internal SchemaObjectCache Cache => _cache ??= new
SchemaObjectCache
();
4 references to SchemaObjectCache
System.Private.Xml (4)
System\Xml\Serialization\ImportContext.cs (1)
29
internal
SchemaObjectCache
Cache => field ??= new SchemaObjectCache(); // cached schema top-level items
System\Xml\Serialization\XmlSchemas.cs (3)
24
private
SchemaObjectCache
? _cache; // cached schema top-level items
56
internal
SchemaObjectCache
Cache => _cache ??= new SchemaObjectCache();
746
internal void SetCache(
SchemaObjectCache
cache, bool shareTypes)