共用方式為


AsyncAutoResetEvent 建構函式

定義

多載

AsyncAutoResetEvent()

初始化類別的新實例,這個實例 AsyncAutoResetEvent 不會內嵌等候程式。

AsyncAutoResetEvent(Boolean)

初始化 AsyncAutoResetEvent 類別的新執行個體。

AsyncAutoResetEvent()

初始化類別的新實例,這個實例 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 可能會導致效能稍微更好。

適用於