CancellationToken.ThrowIfCancellationRequested Método

Definición

Produce OperationCanceledException si este token ha tenido una solicitud de cancelación.

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

Excepciones

Se solicitó la cancelación del token.

Comentarios

Este método proporciona funcionalidad equivalente a:

C#

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

Se aplica a

Consulte también