gpt4 book ai didi

WCF WebApi HttpResponseException 问题

转载 作者:行者123 更新时间:2023-12-04 14:27:31 34 4
gpt4 key购买 nike

我试图抛出一个 HttpResponseException(HttpStatusCode.NotFound) 并且我收到以下错误

The response message returned by the Response property of this exception should be immediately returned to the client. No further handling of the request message is required.

我已经删除了我的方法中的所有代码,我只是抛出这样的异常

[WebGet]
public MyData Get()
{
throw new HttpResponseException(HttpStatusCode.NotFound);
}

如果我更改我的方法以返回 HttpResponseMessage 我可以让它正常工作,但是它没有解决问题,我无法让我的身份验证操作处理程序工作而无法抛出一个 HttpResponseException

最佳答案

尝试使用 WebFaultException用于在 WCF 中返回 HTTP 状态代码...

throw new WebFaultException(HttpStatusCode.NotFound);

关于WCF WebApi HttpResponseException 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9335597/

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