作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
SynchronizationContext
有一个名为 IsWaitNotificationRequired
的属性.出于其目的,docs有话要说:
Determines if wait notification is required.
true if wait notification is required; otherwise, false.
IsWaitNotificationRequired
类似
Control.InvokeRequired
的东西,或者这是不同的东西?
最佳答案
这是用于允许连接到 CLR 同步等待例程的基础结构。这篇博文解释了这是如何工作的:https://web.archive.org/web/20080503180352/http://www.bluebytesoftware.com/blog/2008/02/27/HookingCLRBlockingCallsWithSynchronizationContext.aspx
此属性将始终返回 false
如果此行为未在 SynchronizationContext
的子类中特别覆盖如果它执行了 Wait
的覆盖实现方法被调用。
关于.net - 什么是 SynchronizationContext.IsWaitNotificationRequired?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8568388/
SynchronizationContext 有一个名为 IsWaitNotificationRequired 的属性.出于其目的,docs有话要说: Determines if wait notif
我是一名优秀的程序员,十分优秀!