CancellationToken.ThrowIfCancellationRequested Metodo

Definizione

Genera un oggetto OperationCanceledException se è stato richiesto l'annullamento di questo token.

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

Eccezioni

Per il token è stato richiesto l'annullamento.

Commenti

Questo metodo fornisce funzionalità equivalenti a:

C#

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

Si applica a

Vedi anche