CancellationToken.ThrowIfCancellationRequested メソッド

定義

このトークンに対して取り消しが要求された場合、OperationCanceledException をスローします。

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

例外

このトークンに対して取り消しが要求されました。

注釈

このメソッドは、次のような機能を提供します。

C#

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

適用対象

こちらもご覧ください