AsyncAutoResetEvent 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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
可以稍微提高性能。