3 instantiations of CreatedResult
Microsoft.AspNetCore.Mvc.Core (3)
ControllerBase.cs (3)
2044return new CreatedResult(); 2056return new CreatedResult(uri, value); 2068return new CreatedResult(uri, value);
12 references to CreatedResult
Microsoft.AspNetCore.Mvc.Core (12)
ControllerBase.cs (9)
2038/// Creates a <see cref="CreatedResult"/> object that produces a <see cref="StatusCodes.Status201Created"/> response. 2040/// <returns>The created <see cref="CreatedResult"/> for the response.</returns> 2042public virtual CreatedResult Created() 2048/// Creates a <see cref="CreatedResult"/> object that produces a <see cref="StatusCodes.Status201Created"/> response. 2052/// <returns>The created <see cref="CreatedResult"/> for the response.</returns> 2054public virtual CreatedResult Created(string? uri, [ActionResultObjectValue] object? value) 2060/// Creates a <see cref="CreatedResult"/> object that produces a <see cref="StatusCodes.Status201Created"/> response. 2064/// <returns>The created <see cref="CreatedResult"/> for the response.</returns> 2066public 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