2 instantiations of SizeLimitedCache
PresentationCore (2)
MS\Internal\FontCache\FontSource.cs (1)
446
private static readonly SizeLimitedCache<Uri, byte[]> s_resourceCache =
new
(MaximumCacheItems);
MS\Internal\Shaping\GlyphingCache.cs (1)
37
_sizeLimitedCache = new
SizeLimitedCache
<Typeface, TypefaceMap>(capacity);
2 references to SizeLimitedCache
PresentationCore (2)
MS\Internal\FontCache\FontSource.cs (1)
446
private static readonly
SizeLimitedCache
<Uri, byte[]> s_resourceCache = new(MaximumCacheItems);
MS\Internal\Shaping\GlyphingCache.cs (1)
33
private readonly
SizeLimitedCache
<Typeface, TypefaceMap> _sizeLimitedCache;