3 instantiations of CreatedResult
Microsoft.AspNetCore.Mvc.Core (3)
ControllerBase.cs (3)
2040return new CreatedResult(); 2052return new CreatedResult(uri, value); 2064return new CreatedResult(uri, value);
12 references to CreatedResult
Microsoft.AspNetCore.Mvc.Core (12)
ControllerBase.cs (9)
2034/// Creates a <see cref="CreatedResult"/> object that produces a <see cref="StatusCodes.Status201Created"/> response. 2036/// <returns>The created <see cref="CreatedResult"/> for the response.</returns> 2038public virtual CreatedResult Created() 2044/// Creates a <see cref="CreatedResult"/> object that produces a <see cref="StatusCodes.Status201Created"/> response. 2048/// <returns>The created <see cref="CreatedResult"/> for the response.</returns> 2050public virtual CreatedResult Created(string? uri, [ActionResultObjectValue] object? value) 2056/// Creates a <see cref="CreatedResult"/> object that produces a <see cref="StatusCodes.Status201Created"/> response. 2060/// <returns>The created <see cref="CreatedResult"/> for the response.</returns> 2062public virtual CreatedResult Created(Uri? uri, [ActionResultObjectValue] object? value)
CreatedResult.cs (3)
20/// Initializes a new instance of the <see cref="CreatedResult"/> class 29/// Initializes a new instance of the <see cref="CreatedResult"/> class with the values 46/// Initializes a new instance of the <see cref="CreatedResult"/> class with the values