Invokes the given action with the set result of the task when the task succeeded.

Namespace: UnityThreading
Assembly: UnityThreading (in UnityThreading.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static Task OnResult<T>(
	this Task task,
	Action<T> action
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function OnResult(Of T) ( _
	task As Task, _
	action As Action(Of T) _
) As Task
Visual C++
[ExtensionAttribute]
public:
generic<typename T>
static Task^ OnResult(
	Task^ task, 
	Action<T>^ action
)

Parameters

task
Type: UnityThreading..::..Task
action
Type: System..::..Action<(Of <(<'T>)>)>
The action to perform.

Type Parameters

T

Return Value

This task.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Task. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also