ManualResetEvent(Boolean) 构造函数

定义

用一个指示是否将初始状态设置为终止的布尔值初始化 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 直到调用该方法。

适用于

另请参阅