ManualResetEvent.Set 方法

定义

将事件状态设置为终止状态,从而允许继续执行一个或多个等待线程。

public:
 bool Set();
public bool Set ();
member this.Set : unit -> bool
Public Function Set () As Boolean

返回

如果该操作成功,则为 true;否则为 false

注解

调用 Set 方法会使等待句柄处于信号状态, Reset() 直到调用方法。

适用于