1 write to CacheKey
Microsoft.AspNetCore.OutputCaching (1)
OutputCacheMiddleware.cs (1)
382context.CacheKey = _keyProvider.CreateStorageKey(context);
6 references to CacheKey
Microsoft.AspNetCore.OutputCaching (6)
OutputCacheMiddleware.cs (6)
138var cacheEntry = await _requestDispatcher.ScheduleAsync(context.CacheKey, key => ExecuteResponseAsync()); 335if (string.IsNullOrEmpty(cacheContext.CacheKey)) 346cacheEntry = await _outputCacheEntryDispatcher.ScheduleAsync(cacheContext.CacheKey, (Store: _store, CacheContext: cacheContext), static async (key, state) => await OutputCacheEntryFormatter.GetAsync(key, state.Store, state.CacheContext.HttpContext.RequestAborted)); 377if (!string.IsNullOrEmpty(context.CacheKey)) 434if (string.IsNullOrEmpty(context.CacheKey)) 442await OutputCacheEntryFormatter.StoreAsync(context.CacheKey, context.CachedResponse, context.Tags, context.CachedResponseValidFor,