File: IOutputCacheKeyProvider.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 interface IOutputCacheKeyProvider
{
    /// <summary>
    /// Create a key for storing cached responses.
    /// </summary>
    /// <param name="context">The <see cref="OutputCacheContext"/>.</param>
    /// <returns>The created key.</returns>
    string CreateStorageKey(OutputCacheContext context);
}