2 types derived from CacheKey
Microsoft.VisualStudio.LanguageServices.Razor (2)
LanguageClient\Debugging\RazorProximityExpressionResolver.cs (2)
23
private record CohostCacheKey(DocumentId DocumentId, VersionStamp Version, int Line, int Character) :
CacheKey
;
24
private record LspCacheKey(Uri DocumentUri, long? HostDocumentSyncVersion, int Line, int Character) :
CacheKey
;
1 reference to CacheKey
Microsoft.VisualStudio.LanguageServices.Razor (1)
LanguageClient\Debugging\RazorProximityExpressionResolver.cs (1)
31
private readonly MemoryCache<
CacheKey
, IReadOnlyList<string>> _cache = new(sizeLimit: 10);