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

RequestedRangeNotSatisfiable() public method

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

            return StatusCode(HttpStatusCode.RequestedRangeNotSatisfiable);
        }
Response