CancellationToken.ThrowIfCancellationRequested Méthode

Définition

Lève une OperationCanceledException si l'annulation de ce jeton a été demandée.

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

Exceptions

L’annulation du jeton a été demandée.

Remarques

Cette méthode fournit des fonctionnalités équivalentes à :

C#

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

S’applique à

Voir aussi