TaskCompletionSource<TResult>.SetResult Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Transitions the underlying Task<TResult> into the RanToCompletion state.

Namespace:  System.Threading.Tasks
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Sub SetResult ( _
    result As TResult _
)
public void SetResult(
    TResult result
)

Parameters

  • result
    Type: TResult
    The result value to bind to this Task<TResult>.

Exceptions

Exception Condition
ObjectDisposedException

The Task was disposed.

InvalidOperationException

The underlying 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.