1 instantiation of OutputCacheEntry
Microsoft.AspNetCore.OutputCaching (1)
22 references to OutputCacheEntry
Microsoft.AspNetCore.OutputCaching (16)
OutputCacheEntryFormatter.cs (6)
14/// Formats <see cref="OutputCacheEntry"/> instance to match structures supported by the <see cref="IOutputCacheStore"/> implementations.
24public static async ValueTask<OutputCacheEntry?> GetAsync(string key, IOutputCacheStore store, CancellationToken cancellationToken)
38public static async ValueTask StoreAsync(string key, OutputCacheEntry value, HashSet<string>? tags, TimeSpan duration, IOutputCacheStore store, ILogger logger, CancellationToken cancellationToken)
117private static void Serialize(IBufferWriter<byte> output, OutputCacheEntry entry)
227internal static OutputCacheEntry? Deserialize(ReadOnlyMemory<byte> content)
254var result = new OutputCacheEntry(created, statusCode);
Microsoft.AspNetCore.OutputCaching.Microbenchmarks (3)
Microsoft.AspNetCore.OutputCaching.Tests (3)