File: CacheEntry\CachedVaryByRules.cs
Web Access
Project: src\src\Middleware\ResponseCaching\src\Microsoft.AspNetCore.ResponseCaching.csproj (Microsoft.AspNetCore.ResponseCaching)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.Extensions.Primitives;
 
namespace Microsoft.AspNetCore.ResponseCaching;
 
internal sealed class CachedVaryByRules : IResponseCacheEntry
{
    public string VaryByKeyPrefix { get; set; } = default!;
 
    public StringValues Headers { get; set; }
 
    public StringValues QueryKeys { get; set; }
}