File: OutputCacheFeature.cs
Web Access
Project: src\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;
 
internal sealed class OutputCacheFeature : IOutputCacheFeature
{
    public OutputCacheFeature(OutputCacheContext context)
    {
        Context = context;
    }
 
    public OutputCacheContext Context { get; }
}