SetResult Method
Collapse the table of content
Expand the table of content

TaskCompletionSource(Of TResult).SetResult Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Transitions the underlying Task(Of TResult) into the RanToCompletion state.

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

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

Parameters

result
Type: TResult
The result value to bind to this Task(Of TResult).

ExceptionCondition
ObjectDisposedException

The Task was disposed.

InvalidOperationException

The underlying Task(Of TResult) is already in one of the three final states: RanToCompletion, Faulted, or Canceled.

Windows Phone OS

Supported in: 8.1, 8.0

Show:
© 2017 Microsoft