SynchronizationContext.Post 或 .Send 会导致异常吗?

发布于 2024-08-24 21:54:32 字数 280 浏览 6 评论 0原文

我已阅读有关 SynchronizationContext 的所有推荐文章,但有一个小问题我没有找到答案。 就我而言,我有一个事件处理程序,它调用 Log() 方法,该方法将文本输出到文本框。 Log() 从 WCF 服务调用。该事件是从 WCF 客户端实例(线程)引发的。 通常,我会检查 Control.InvokeRequired 以确保我位于正确的线程上。

使用 SynchronizationContext 时还需要这样做吗? 换句话说,即使我已经在正确的线程上,我总是可以执行 .Post() 或 .Send() 吗?

I've read all recommended articles on SynchronizationContext, but there is one small question I did not find an answer for.
In my case I have an event handler that calls a Log() method that outputs text to a TextBox. Log() is called from a WCF service. The event is raised from WCF client instances (threads).
Usually, I check Control.InvokeRequired to be sure I am on the correct thread.

Do I still need to do that when using SynchronizationContext?
In other words, can I always do a .Post() or .Send() even if I'm already on the correct thread?

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

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

发布评论

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

评论(1

一个人的夜不怕黑 2024-08-31 21:54:32

如果您已经在正确的线程上,则不必使用“发布”或“发送”,但它会起作用

Using Post or Send if you're already on the correct thread is not necessary, but it will work

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