我正在尝试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
我错过了什么?
谢谢