CancellationToken.ThrowIfCancellationRequested Methode

Definition

Löst eine OperationCanceledException aus, wenn für dieses Token ein Abbruch angefordert wurde.

public:
 void ThrowIfCancellationRequested();
public void ThrowIfCancellationRequested ();
member this.ThrowIfCancellationRequested : unit -> unit
Public Sub ThrowIfCancellationRequested ()

Ausnahmen

Das Token, für das der Abbruch angefordert wurde.

Hinweise

Diese Methode bietet Funktionen, die folgendes äquivalent sind:

C#

if (token.IsCancellationRequested)   
    throw new OperationCanceledException(token);  
If token.IsCancellationRequested Then  
    Throw New OperationCanceledException(token)  
End If  

Gilt für:

Weitere Informationen