TaskCompletionSource<TResult>.SetException Method (Exception)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Transitions the underlying Task<TResult> into the Faulted state.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- exception
- Type: System.Exception
The exception to bind to this Task<TResult>.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The Task was disposed. |
| ArgumentNullException | The exception argument is null. |
| InvalidOperationException | The underlying Task<TResult> is already in one of the three final states: RanToCompletion, Faulted, or Canceled. |
Show: