[]
        
(Showing Draft Content)

C1.Web.Api.C1ApiController.Created

Created Method

Created(string, object)

Creates a Microsoft.AspNetCore.Mvc.CreatedResult object that produces a Created (201) response.

Declaration
public override CreatedResult Created(string uri, object value)
Parameters
Type Name Description
string uri

The URI at which the content has been created.

object value

The content value to format in the entity body.

Returns
Type Description
CreatedResult

The created Microsoft.AspNetCore.Mvc.CreatedResult for the response.

Overrides

Created(Uri, object)

Creates a Microsoft.AspNetCore.Mvc.CreatedResult object that produces a Created (201) response.

Declaration
public override CreatedResult Created(Uri uri, object value)
Parameters
Type Name Description
Uri uri

The URI at which the content has been created.

object value

The content value to format in the entity body.

Returns
Type Description
CreatedResult

The created Microsoft.AspNetCore.Mvc.CreatedResult for the response.

Overrides