Return content with IHttpActionResult for non-OK response

前端 未结 15 2236
北恋
北恋 2020-11-28 17:55

For returning from a Web API 2 controller, I can return content with the response if the response is OK (status 200) like this:

    public IHttpActionResult          


        
15条回答
  •  忘掉有多难
    2020-11-28 18:52

    Anyone who is interested in returning anything with any statuscode with returning ResponseMessage:

    //CreateResponse(HttpStatusCode, T value)
    return ResponseMessage(Request.CreateResponse(HttpStatusCode.XX, object));
    

提交回复
热议问题