AsyncAutoResetEvent 构造函数

定义

重载

AsyncAutoResetEvent()

初始化不内联 awaiter 的 AsyncAutoResetEvent 类的新实例。

AsyncAutoResetEvent(Boolean)

初始化 AsyncAutoResetEvent 类的新实例。

AsyncAutoResetEvent()

初始化不内联 awaiter 的 AsyncAutoResetEvent 类的新实例。

public:
 AsyncAutoResetEvent();
public:
 AsyncAutoResetEvent();
 AsyncAutoResetEvent();
public AsyncAutoResetEvent ();
Public Sub New ()

适用于

AsyncAutoResetEvent(Boolean)

初始化 AsyncAutoResetEvent 类的新实例。

public:
 AsyncAutoResetEvent(bool allowInliningAwaiters);
public:
 AsyncAutoResetEvent(bool allowInliningAwaiters);
 AsyncAutoResetEvent(bool allowInliningAwaiters);
public AsyncAutoResetEvent (bool allowInliningAwaiters);
new Microsoft.VisualStudio.Threading.AsyncAutoResetEvent : bool -> Microsoft.VisualStudio.Threading.AsyncAutoResetEvent
Public Sub New (allowInliningAwaiters As Boolean)

参数

allowInliningAwaiters
Boolean

一个 值,该值指示是否在 方法中 Set() 同步完成任务,而不是异步完成。 false 更好地模拟 类的行为 AutoResetEvent ,但 true 可以稍微提高性能。

注解

allowInliningWaiters 参数设置为 false 可以模拟 类的行为 AutoResetEvent ,但将其设置为 true 可以稍微提高性能。

适用于