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

UnsupportedMediaType() 공개 메소드

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

            return StatusCode(HttpStatusCode.UnsupportedMediaType);
        }
Response