File: ResultsCache.cs
Web Access
Project: src\src\Http\Http.Results\src\Microsoft.AspNetCore.Http.Results.csproj (Microsoft.AspNetCore.Http.Results)
// 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.HttpResults;
 
namespace Microsoft.AspNetCore.Http;
 
internal static partial class ResultsCache
{
    public static NotFound NotFound { get; } = new();
    public static UnauthorizedHttpResult Unauthorized { get; } = new();
    public static BadRequest BadRequest { get; } = new();
    public static Conflict Conflict { get; } = new();
    public static NoContent NoContent { get; } = new();
    public static Ok Ok { get; } = new();
    public static UnprocessableEntity UnprocessableEntity { get; } = new();
    public static InternalServerError InternalServerError { get; } = new();
}