ManualResetEvent(Boolean) 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
用一个指示是否将初始状态设置为终止的布尔值初始化 ManualResetEvent 类的新实例。
public:
ManualResetEvent(bool initialState);
public ManualResetEvent (bool initialState);
new System.Threading.ManualResetEvent : bool -> System.Threading.ManualResetEvent
Public Sub New (initialState As Boolean)
参数
- initialState
- Boolean
如果为 true
,则将初始状态设置为终止;如果为 false
,则将初始状态设置为非终止。
注解
如果信号 (发出初始状态,即,如果通过传递initialState``true
) 创建该状态ManualResetEvent,则等待ManualResetEvent的线程不会阻止。 如果初始状态为非对齐状态,则线程会阻塞, Set 直到调用该方法。