8 references to SelectionCache
Microsoft.NET.ProjectData (8)
Donor\ProjectDataDonorIndex.Reader.cs (2)
17
internal static int SelectionCacheCount =>
SelectionCache
.Count;
101
=>
SelectionCache
.Clear();
Donor\ProjectDataDonorIndex.Selection.cs (6)
39
if (
SelectionCache
.TryGetValue(cacheKey, out SelectionCacheEntry? cached) &&
48
RemoveCacheEntry(
SelectionCache
, cacheKey, cached);
112
?
SelectionCache
.TryAdd(cacheKey, created)
113
:
SelectionCache
.TryUpdate(cacheKey, created, cached);
119
RemoveCacheEntry(
SelectionCache
, cacheKey, created);
123
TrimCache(
SelectionCache
, cacheKey);