我正试图提出一个HttpResponseException在这个屏幕上描述(约1分钟)

throw new HttpResponseException(HttpStatusCode.Unauthorized);

但应用程序不会编译,因为它会抛出以下错误:
The best overloaded method match for 'System.Web.Http.HttpResponseException.HttpResponseException(System.Net.Http.HttpResponseMessage)' has some invalid arguments

msdn上的文档说它有一个接受HttpResponseMessage枚举的构造函数。http://msdn.microsoft.com/en-us/library/hh835324%28v=vs.108%29.aspx
我错过了什么?
谢谢

最佳答案

如果你用的是遥控器,情况就变了。尝试:

throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.Unauthorized));

09-10 17:16