gpt4 book ai didi

c# - HttpResponseException 不接受 HttpStatusCode

转载 作者:太空狗 更新时间:2023-10-29 18:13:36 24 4
gpt4 key购买 nike

我正在尝试引发 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

我错过了什么?

谢谢

最佳答案

如果您使用的是 RC,这已经改变了。尝试:

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

关于c# - HttpResponseException 不接受 HttpStatusCode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10905163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com