Return content with IHttpActionResult for non-OK response

前端 未结 15 2191
北恋
北恋 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:51

    For exceptions, I usually do

     catch (Exception ex)
            {
                return InternalServerError(new ApplicationException("Something went wrong in this request. internal exception: " + ex.Message));
            }
    

提交回复
热议问题