2 types derived from CacheKey
Microsoft.VisualStudio.LanguageServices.Razor (2)
LanguageClient\Debugging\RazorProximityExpressionResolver.cs (2)
23private record CohostCacheKey(DocumentId DocumentId, VersionStamp Version, int Line, int Character) : CacheKey; 24private 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)
31private readonly MemoryCache<CacheKey, IReadOnlyList<string>> _cache = new(sizeLimit: 10);