File: CacheEntry\CachedResponse.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.AspNetCore.Http; namespace Microsoft.AspNetCore.ResponseCaching; internal sealed class CachedResponse : IResponseCacheEntry { public DateTimeOffset Created { get; set; } public int StatusCode { get; set; } public IHeaderDictionary Headers { get; set; } = default!; public CachedResponseBody Body { get; set; } = default!; } |