| File: Policies\EnableCachePolicy.cs | Web Access |
| Project: src\aspnetcore\src\Middleware\OutputCaching\src\Microsoft.AspNetCore.OutputCaching.csproj (Microsoft.AspNetCore.OutputCaching) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.OutputCaching; /// <summary> /// A policy that enables caching /// </summary> internal sealed class EnableCachePolicy : IOutputCachePolicy { public static readonly EnableCachePolicy Enabled = new(); public static readonly EnableCachePolicy Disabled = new(); private EnableCachePolicy() { } /// <inheritdoc /> ValueTask IOutputCachePolicy.CacheRequestAsync(OutputCacheContext context, CancellationToken cancellationToken) { context.EnableOutputCaching = this == Enabled; return ValueTask.CompletedTask; } /// <inheritdoc /> ValueTask IOutputCachePolicy.ServeResponseAsync(OutputCacheContext context, CancellationToken cancellationToken) { return ValueTask.CompletedTask; } /// <inheritdoc /> ValueTask IOutputCachePolicy.ServeFromCacheAsync(OutputCacheContext context, CancellationToken cancellationToken) { return ValueTask.CompletedTask; } }