Stream.CreateWaitHandle Methode

Definition

Achtung

CreateWaitHandle will be removed eventually. Please use "new ManualResetEvent(false)" instead.

Achtung

Stream.CreateWaitHandle has been deprecated. Use the ManualResetEvent(false) constructor instead.

Achtung

CreateWaitHandle has been deprecated. Use the ManualResetEvent(false) constructor instead.

Reserviert ein WaitHandle-Objekt.

protected:
 virtual System::Threading::WaitHandle ^ CreateWaitHandle();
[System.Obsolete("CreateWaitHandle will be removed eventually.  Please use "new ManualResetEvent(false)" instead.")]
protected virtual System.Threading.WaitHandle CreateWaitHandle ();
[System.Obsolete("Stream.CreateWaitHandle has been deprecated. Use the ManualResetEvent(false) constructor instead.")]
protected virtual System.Threading.WaitHandle CreateWaitHandle ();
[System.Obsolete("CreateWaitHandle has been deprecated. Use the ManualResetEvent(false) constructor instead.")]
protected virtual System.Threading.WaitHandle CreateWaitHandle ();
protected virtual System.Threading.WaitHandle CreateWaitHandle ();
[<System.Obsolete("CreateWaitHandle will be removed eventually.  Please use "new ManualResetEvent(false)" instead.")>]
abstract member CreateWaitHandle : unit -> System.Threading.WaitHandle
override this.CreateWaitHandle : unit -> System.Threading.WaitHandle
[<System.Obsolete("Stream.CreateWaitHandle has been deprecated. Use the ManualResetEvent(false) constructor instead.")>]
abstract member CreateWaitHandle : unit -> System.Threading.WaitHandle
override this.CreateWaitHandle : unit -> System.Threading.WaitHandle
[<System.Obsolete("CreateWaitHandle has been deprecated. Use the ManualResetEvent(false) constructor instead.")>]
abstract member CreateWaitHandle : unit -> System.Threading.WaitHandle
override this.CreateWaitHandle : unit -> System.Threading.WaitHandle
abstract member CreateWaitHandle : unit -> System.Threading.WaitHandle
override this.CreateWaitHandle : unit -> System.Threading.WaitHandle
Protected Overridable Function CreateWaitHandle () As WaitHandle

Gibt zurück

Ein Verweis auf das reservierte WaitHandle.

Attribute

Hinweise

Wenn sie zum ersten Mal aufgerufen wird, erstellt die aktuelle Methode ein WaitHandle Objekt und gibt es zurück. Gibt bei nachfolgenden Aufrufen CreateWaitHandle einen Verweis auf ein neues Wartehandle zurück.

Verwenden Sie diese Methode, wenn Sie die asynchronen Methoden implementieren und eine Möglichkeit zum Blockieren in EndRead oder EndWrite benötigen, bis der asynchrone Vorgang abgeschlossen ist.

Gilt für:

Weitere Informationen