Junior.Route.Routing.Responses.Response.HttpVersionNotSupported C# (CSharp) 메소드

HttpVersionNotSupported() 공개 메소드

public HttpVersionNotSupported ( bool skipIisCustomErrors = true ) : Response
skipIisCustomErrors bool
리턴 Response
        public Response HttpVersionNotSupported(bool skipIisCustomErrors = true)
        {
            _skipIisCustomErrors = skipIisCustomErrors;

            return StatusCode(HttpStatusCode.HttpVersionNotSupported);
        }
Response