Junior.Route.Routing.Responses.Response.NotFound C# (CSharp) Method

NotFound() public method

public NotFound ( bool skipIisCustomErrors = true ) : Response
skipIisCustomErrors bool
return Response
        public Response NotFound(bool skipIisCustomErrors = true)
        {
            _skipIisCustomErrors = skipIisCustomErrors;

            return StatusCode(HttpStatusCode.NotFound);
        }
Response