CancellationToken.ThrowIfCancellationRequested Metoda

Definice

Vyvolá výjimku , OperationCanceledException pokud byl u tohoto tokenu požadováno zrušení.

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

Výjimky

U tokenu bylo požadováno zrušení.

Poznámky

Tato metoda poskytuje funkce ekvivalentní:

C#

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

Platí pro

Viz také