One 方法内部抛出的异常是否会导致通道出现故障?

发布于 2024-10-19 06:33:43 字数 63 浏览 6 评论 0原文

如果我在方法中设置 IsOneWay=true,其中抛出的异常是否会影响通道或客户端?

If I set IsOneWay=true in a method, does exceptions thrown inside it affect the channel or the client?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的鱼塘能养鲲 2024-10-26 06:33:43

不会有任何异常发送给客户端,但它会对任何不可靠的通道产生故障。
来自 MSDN

单向操作不能返回值,并且服务端抛出的任何异常都不会到达客户端。

如果您想了解更多详细信息,请查看codeidle 上的博客它将引导您完成单向操作,包括抛出异常时发生的情况。

尽管这听起来很可怕,但它取决于绑定,我现在正在尝试找到合适的资源来解释它: WCF 和单向行为不一致

No exception will make it to the client, but it will fault any unreliable channel.
From MSDN:

one-way operations can't return values, and any exception thrown on the service side will not make its way to the client.

Any in case you want some more details check out this blog on codeidle it will walk you through one way operations, including what happens when an exception is thrown.

As scary as this sounds it is dependent on the binding, I am trying to find the appropriate resource now that explains it: WCF And One Way Behavioral Inconsistency

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文