SynchronizationContext.Post 或 .Send 会导致异常吗?
我已阅读有关 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您已经在正确的线程上,则不必使用“发布”或“发送”,但它会起作用
Using Post or Send if you're already on the correct thread is not necessary, but it will work