WCF - 调用无效服务(它仍然是同步的)吗?

发布于 2024-11-08 12:27:42 字数 163 浏览 0 评论 0原文

基本上,如果我的服务是:public void DoSomethingThatTakesAwhile() { ... },对该服务的调用是否会导致我的应用程序等待该方法完成?

我问这个问题是因为我不希望我的调用者能够继续下去,直到该方法完成,以防该方法需要抛出错误异常。

Basically, if my service is: public void DoSomethingThatTakesAwhile() { ... }, will the call to that service cause my application to wait for the method to finish?

I ask because I don't want my caller to be able to continue until that method finishes in case the method needs to throw a fault exception.

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

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

发布评论

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

评论(1

倾听心声的旋律 2024-11-15 12:27:42

是的,调用是同步的,除非操作被标记为 [OperationContract(IsOneWay = true)]

Yes, the call is synchronous, unless the operation is marked with [OperationContract(IsOneWay = true)]

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