aspnetcore/src/Microsoft.AspNetCore.Mvc.Core/OkObjectResult.cs

24 lines
912 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNetCore.Http;
namespace Microsoft.AspNetCore.Mvc
{
/// <summary>
/// An <see cref="ObjectResult"/> that when executed performs content negotiation, formats the entity body, and
/// will produce a <see cref="StatusCodes.Status200OK"/> response if negotiation and formatting succeed.
/// </summary>
public class OkObjectResult : ObjectResult
{
/// <summary>
/// Initializes a new instance of the <see cref="OkObjectResult"/> class.
/// </summary>
/// <param name="value">The content to format into the entity body.</param>
public OkObjectResult(object value)
: base(value)
{
StatusCode = StatusCodes.Status200OK;
}
}
}