TaskCompletionSource<TResult>.TrySetException Method (IEnumerable<Exception>)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Attempts to transition the underlying Task<TResult> into the Faulted state.
Namespace: System.Threading.Tasks
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Function TrySetException ( _
exceptions As IEnumerable(Of Exception) _
) As Boolean
public bool TrySetException(
IEnumerable<Exception> exceptions
)
Parameters
- exceptions
Type: System.Collections.Generic.IEnumerable<Exception>
The collection of exceptions to bind to this Task<TResult>.
Return Value
Type: System.Boolean
True if the operation was successful; otherwise, false.
Exceptions
Exception | Condition |
---|---|
ObjectDisposedException | The Task was disposed. |
ArgumentNullException | The exceptions argument is null. |
ArgumentException | There are one or more null elements in exceptions. -or- The exceptions collection is empty. |
Remarks
This operation will return false if the Task<TResult> is already in one of the three final states: RanToCompletion, Faulted, or Canceled.
Version Information
Silverlight
Supported in: 5
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.