3 instantiations of NotFoundObjectResult
Microsoft.AspNetCore.Mvc.Core (1)
ControllerBase.cs (1)
1740
=> new
NotFoundObjectResult
(value);
Microsoft.AspNetCore.Mvc.RazorPages (2)
PageBase.cs (1)
471
=> new
NotFoundObjectResult
(value);
PageModel.cs (1)
778
=> new
NotFoundObjectResult
(value);
10 references to NotFoundObjectResult
Microsoft.AspNetCore.Mvc.Core (4)
ControllerBase.cs (3)
1735
/// Creates a <see cref="
NotFoundObjectResult
"/> that produces a <see cref="StatusCodes.Status404NotFound"/> response.
1737
/// <returns>The created <see cref="
NotFoundObjectResult
"/> for the response.</returns>
1739
public virtual
NotFoundObjectResult
NotFound([ActionResultObjectValue] object? value)
NotFoundObjectResult.cs (1)
18
/// Creates a new <see cref="
NotFoundObjectResult
"/> instance.
Microsoft.AspNetCore.Mvc.RazorPages (6)
PageBase.cs (3)
467
/// Creates an <see cref="
NotFoundObjectResult
"/> that produces a <see cref="StatusCodes.Status404NotFound"/> response.
469
/// <returns>The created <see cref="
NotFoundObjectResult
"/> for the response.</returns>
470
public virtual
NotFoundObjectResult
NotFound(object value)
PageModel.cs (3)
774
/// Creates an <see cref="
NotFoundObjectResult
"/> that produces a <see cref="StatusCodes.Status404NotFound"/> response.
776
/// <returns>The created <see cref="
NotFoundObjectResult
"/> for the response.</returns>
777
public virtual
NotFoundObjectResult
NotFound(object value)