Expand Minimize
This topic has not yet been rated - Rate this topic

NativeActivityContext.ScheduleFunc<T, TResult> Method (ActivityFunc<T, TResult>, T, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T, TResult> that has two parameters for a return value and an in argument and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T, TResult>.

Namespace:  System.Activities
Assembly:  System.Activities (in System.Activities.dll)
public ActivityInstance ScheduleFunc<T, TResult>(
	ActivityFunc<T, TResult> activityFunc,
	T argument,
	CompletionCallback<TResult> onCompleted,
	FaultCallback onFaulted
)

Type Parameters

T

The data that is carried into an activity.

TResult

The type of the NativeActivity child activity out argument.

Parameters

activityFunc
Type: System.Activities.ActivityFunc<T, TResult>

A child activity that runs when a specific event occurs in the parent activity and returns a value.

argument
Type: T

An argument that carries data into an activity.

onCompleted
Type: System.Activities.CompletionCallback<TResult>

A bookmark that indicates where the parent activity execution resumes upon completion of the ActivityFunc<T, TResult>.

onFaulted
Type: System.Activities.FaultCallback

A bookmark that indicates where the parent activity execution resumes if an error causes the termination of the ActivityFunc<T, TResult>.

Return Value

Type: System.Activities.ActivityInstance
An instance of an activity.

.NET Framework

Supported in: 4.5, 4

.NET Framework Client Profile

Supported in: 4

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.