TaskCompletionSource.SetException メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
SetException(IEnumerable<Exception>) | |
SetException(Exception) |
SetException(IEnumerable<Exception>)
public:
void SetException(System::Collections::Generic::IEnumerable<Exception ^> ^ exceptions);
public void SetException (System.Collections.Generic.IEnumerable<Exception> exceptions);
member this.SetException : seq<Exception> -> unit
Public Sub SetException (exceptions As IEnumerable(Of Exception))
パラメーター
- exceptions
- IEnumerable<Exception>
この Task に関連付ける例外のコレクション。
例外
exceptions
が null
です。
exceptions
に 1 つ以上の null
要素があります。
基になる Task が既に次の 3 つの最終状態のいずれかです: RanToCompletion、Faulted、または Canceled。
適用対象
SetException(Exception)
public:
void SetException(Exception ^ exception);
public void SetException (Exception exception);
member this.SetException : Exception -> unit
Public Sub SetException (exception As Exception)
パラメーター
例外
exception
が null
です。
基になる Task が既に次の 3 つの最終状態のいずれかです: RanToCompletion、Faulted、または Canceled。