NativeActivityFaultContext Class

Definition

Represents the execution environment of a NativeActivity when it is handling an exception thrown by a child activity.

public ref class NativeActivityFaultContext sealed : System::Activities::NativeActivityContext
public sealed class NativeActivityFaultContext : System.Activities.NativeActivityContext
type NativeActivityFaultContext = class
    inherit NativeActivityContext
Public NotInheritable Class NativeActivityFaultContext
Inherits NativeActivityContext
Inheritance
NativeActivityFaultContext

Remarks

This class is sealed.

Properties

ActivityInstanceId

Gets the unique identifier of the currently executing activity instance.

(Inherited from ActivityContext)
DataContext

Gets the data context of the currently executing activity.

(Inherited from ActivityContext)
DefaultBookmarkScope

Gets the bookmark scope associated with the root of the workflow.

(Inherited from NativeActivityContext)
IsCancellationRequested

Gets or sets a value that indicates whether the currently executing NativeActivity instance is to be canceled.

(Inherited from NativeActivityContext)
Properties

Gets an object that handles properties for execution of the current NativeActivityContext.

(Inherited from NativeActivityContext)
WorkflowInstanceId

Gets the unique identifier of the currently executing workflow instance.

(Inherited from ActivityContext)

Methods

Abort()

Aborts the current workflow instance during runtime.

(Inherited from NativeActivityContext)
Abort(Exception)

Aborts the current workflow instance during runtime for the specified reason.

(Inherited from NativeActivityContext)
AbortChildInstance(ActivityInstance)

Aborts the specified instance of a NativeActivity child activity.

(Inherited from NativeActivityContext)
AbortChildInstance(ActivityInstance, Exception)

Aborts the specified instance of a NativeActivity child activity for the specified reason.

(Inherited from NativeActivityContext)
CancelChild(ActivityInstance)

Cancels the specified child activity instance.

(Inherited from NativeActivityContext)
CancelChildren()

Causes an early completion of all the child activities of an executing NativeActivity.

(Inherited from NativeActivityContext)
CreateBookmark()

Creates a point at which a NativeActivity can passively wait to be resumed.

(Inherited from NativeActivityContext)
CreateBookmark(BookmarkCallback)

Creates the point at which a NativeActivity can passively wait to be resumed and schedules the specified method to execute when notification of the resume operation completes.

(Inherited from NativeActivityContext)
CreateBookmark(BookmarkCallback, BookmarkOptions)

Creates the point at which a NativeActivity can passively wait to be resumed, with the specified method to execute when notification of the resume operation completes and with the specified option that governs how the bookmark is used during the execution of the current NativeActivity.

(Inherited from NativeActivityContext)
CreateBookmark(String)

Creates the point, with the specified name, at which a NativeActivity can passively wait to be resumed.

(Inherited from NativeActivityContext)
CreateBookmark(String, BookmarkCallback)

Creates the point at which a NativeActivity can passively wait to be resumed, with the specified name and with the specified method to execute when notification of the resume operation completes.

(Inherited from NativeActivityContext)
CreateBookmark(String, BookmarkCallback, BookmarkOptions)

Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes, and the specified option that governs how the bookmark is used during the execution of the current NativeActivity.

(Inherited from NativeActivityContext)
CreateBookmark(String, BookmarkCallback, BookmarkScope)

Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes, and the specified scope of the bookmark.

(Inherited from NativeActivityContext)
CreateBookmark(String, BookmarkCallback, BookmarkScope, BookmarkOptions)

Creates the point at which a NativeActivity can passively wait to be resumed with the specified name, the specified method to execute when notification of the resume operation completes, the specified scope of the bookmark, and the specified option that governs how the bookmark is used during the execution of the current NativeActivity.

(Inherited from NativeActivityContext)
Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetChildren()

Returns a collection of the child activities for the current NativeActivity.

(Inherited from NativeActivityContext)
GetExtension<T>()

Returns an extension of the specified type.

(Inherited from ActivityContext)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetLocation<T>(LocationReference)

Returns the typed location for the specified referenced location for the current activity context.

(Inherited from ActivityContext)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
GetValue(Argument)

Gets the value of the specified Argument.

(Inherited from ActivityContext)
GetValue(RuntimeArgument)

Gets the value of the specified RuntimeArgument.

(Inherited from ActivityContext)
GetValue(Variable)

Returns the value of the specified variable in the current NativeActivity instance.

(Inherited from NativeActivityContext)
GetValue<T>(InArgument<T>)

Gets the value of the specified InArgument<T>.

(Inherited from ActivityContext)
GetValue<T>(InOutArgument<T>)

Gets the value of the specified InOutArgument<T>.

(Inherited from ActivityContext)
GetValue<T>(LocationReference)

Gets the value at the specified LocationReference.

(Inherited from ActivityContext)
GetValue<T>(OutArgument<T>)

Gets the value of the specified OutArgument<T>.

(Inherited from ActivityContext)
GetValue<T>(Variable<T>)

Returns the value of the specified generic variable in the current NativeActivity instance.

(Inherited from NativeActivityContext)
HandleFault()

OBSOLETE.

MarkCanceled()

Designates the currently executing NativeActivity instance as canceled.

(Inherited from NativeActivityContext)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
RemoveAllBookmarks()

Removes all the bookmarks associated with the currently executing NativeActivity instance.

(Inherited from NativeActivityContext)
RemoveBookmark(Bookmark)

Removes the specified bookmark from the currently executing NativeActivity instance.

(Inherited from NativeActivityContext)
RemoveBookmark(String)

Removes the bookmark with the specified name.

(Inherited from NativeActivityContext)
RemoveBookmark(String, BookmarkScope)

Removes the bookmark with the specified name and the specified bookmark scope.

(Inherited from NativeActivityContext)
ResumeBookmark(Bookmark, Object)

Resumes the specified bookmark.

(Inherited from NativeActivityContext)
ScheduleAction(ActivityAction, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction that has no parameters, and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction.

(Inherited from NativeActivityContext)
ScheduleAction<T>(ActivityAction<T>, T, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T> that has one parameter for an in argument and bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14, T15,T16>(ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12, T13,T14,T15,T16>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> that has sixteen parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14, T15>(ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13, T14,T15>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> that has fifteen parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>(ActivityAction<T1, T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> that has fourteen parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>(ActivityAction<T1, T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> that has thirteen parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>(ActivityAction<T1, T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> that has twelve parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>(ActivityAction<T1, T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> that has eleven parameters for in arguments, and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>(ActivityAction<T1, T2,T3,T4,T5,T6,T7,T8,T9,T10>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> that has ten parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8,T9>(ActivityAction<T1, T2,T3,T4,T5,T6,T7,T8,T9>, T1, T2, T3, T4, T5, T6, T7, T8, T9, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9> that has nine parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8,T9>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6,T7,T8>(ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8>, T1, T2, T3, T4, T5, T6, T7, T8, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8> that has eight parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6,T7,T8>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6,T7>(ActivityAction<T1,T2,T3,T4,T5,T6,T7>, T1, T2, T3, T4, T5, T6, T7, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6,T7> that has seven parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6,T7>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5,T6>(ActivityAction<T1,T2,T3,T4,T5,T6>, T1, T2, T3, T4, T5, T6, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5,T6> that has six parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5,T6>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4,T5>(ActivityAction<T1,T2,T3,T4,T5>, T1, T2, T3, T4, T5, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4,T5> that has five parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4,T5>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3,T4>(ActivityAction<T1,T2,T3,T4>, T1, T2, T3, T4, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3,T4> that has four parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3,T4>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2,T3>(ActivityAction<T1,T2,T3>, T1, T2, T3, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2,T3> that has three parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2,T3>.

(Inherited from NativeActivityContext)
ScheduleAction<T1,T2>(ActivityAction<T1,T2>, T1, T2, CompletionCallback, FaultCallback)

Schedules for execution a specified ActivityAction<T1,T2> that has two parameters for in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T1,T2>.

(Inherited from NativeActivityContext)
ScheduleActivity(Activity)

Schedules the specified NativeActivity child activity for execution.

(Inherited from NativeActivityContext)
ScheduleActivity(Activity, CompletionCallback)

Schedules the specified NativeActivity child activity for execution using the specified completion callback location where the parent process resumes upon completion of the activity.

(Inherited from NativeActivityContext)
ScheduleActivity(Activity, CompletionCallback, FaultCallback)

Schedules the specified NativeActivity child activity for execution and bookmarks the specified callback locations where the parent process resumes upon completion of the child activity.

(Inherited from NativeActivityContext)
ScheduleActivity(Activity, FaultCallback)

Schedules the specified NativeActivity child activity for execution using the specified fault callback location where the parent process resumes when the activity enters the faulted state.

(Inherited from NativeActivityContext)
ScheduleActivity<TResult>(Activity<TResult>, CompletionCallback<TResult>, FaultCallback)

Schedules the specified NativeActivity child activity for execution, with one parameter for an in argument, and bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityAction<T>.

(Inherited from NativeActivityContext)
ScheduleDelegate(ActivityDelegate, IDictionary<String,Object>, DelegateCompletionCallback, FaultCallback)

Pushes the callback method for an activity into the work item pool.

(Inherited from NativeActivityContext)
ScheduleFunc<T,TResult>(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>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15, T16,TResult>(ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11, T12,T13,T14,T15,T16,TResult>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,TResult> that has seventeen parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15, TResult>(ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12, T13,T14,T15,TResult>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,TResult> that has sixteen parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,TResult>(ActivityFunc<T1, T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,TResult>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,TResult> that has fifteen parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,TResult>(ActivityFunc<T1, T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,TResult>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,TResult> that has fourteen parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,TResult>(ActivityFunc<T1, T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,TResult>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,TResult> that has thirteen parameters for a return value and in arguments and bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,TResult>(ActivityFunc<T1, T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,TResult>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,TResult> that has twelve parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,TResult>(ActivityFunc<T1, T2,T3,T4,T5,T6,T7,T8,T9,T10,TResult>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,TResult> that has eleven parameters for a return value and in arguments, and bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,TResult>(ActivityFunc<T1, T2,T3,T4,T5,T6,T7,T8,T9,TResult>, T1, T2, T3, T4, T5, T6, T7, T8, T9, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,TResult> that has ten parameters for a return value and in arguments and bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,T9,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,T7,T8,TResult>(ActivityFunc<T1, T2,T3,T4,T5,T6,T7,T8,TResult>, T1, T2, T3, T4, T5, T6, T7, T8, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,TResult> that has nine parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,T7,T8,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,T7,TResult>(ActivityFunc<T1,T2, T3,T4,T5,T6,T7,TResult>, T1, T2, T3, T4, T5, T6, T7, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,T7,TResult> that has eight parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,T7,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,T6,TResult>(ActivityFunc<T1,T2,T3,T4,T5,T6,TResult>, T1, T2, T3, T4, T5, T6, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,T6,TResult> that has seven parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,T6,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,T5,TResult>(ActivityFunc<T1,T2,T3,T4,T5,TResult>, T1, T2, T3, T4, T5, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,T5,TResult> that has six parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,T5,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,T4,TResult>(ActivityFunc<T1,T2,T3,T4,TResult>, T1, T2, T3, T4, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,T4,TResult> that has five parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,T4,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,T3,TResult>(ActivityFunc<T1,T2,T3,TResult>, T1, T2, T3, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,T3,TResult> that has four parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,T3,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<T1,T2,TResult>(ActivityFunc<T1,T2,TResult>, T1, T2, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<T1,T2,TResult> that has three parameters for a return value and in arguments and that bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<T1,T2,TResult>.

(Inherited from NativeActivityContext)
ScheduleFunc<TResult>(ActivityFunc<TResult>, CompletionCallback<TResult>, FaultCallback)

Schedules for execution a specified ActivityFunc<TResult> with one parameter that holds a return value and bookmarks the specified callback locations where the parent process resumes upon completion of the ActivityFunc<TResult>.

(Inherited from NativeActivityContext)
SetValue(Argument, Object)

Assigns a value to the specified Argument.

(Inherited from ActivityContext)
SetValue(Variable, Object)

Assigns the specified value object to the specified variable object.

(Inherited from NativeActivityContext)
SetValue<T>(InArgument<T>, T)

Assigns a value to the specified InArgument<T>.

(Inherited from ActivityContext)
SetValue<T>(InOutArgument<T>, T)

Assigns a value to the specified InOutArgument<T>.

(Inherited from ActivityContext)
SetValue<T>(LocationReference, T)

Assigns a value to the specified LocationReference.

(Inherited from ActivityContext)
SetValue<T>(OutArgument<T>, T)

Assigns a value to the specified OutArgument<T>.

(Inherited from ActivityContext)
SetValue<T>(Variable<T>, T)

Assigns the specified generic value object to the specified generic variable object.

(Inherited from NativeActivityContext)
ToString()

Returns a string that represents the current object.

(Inherited from Object)
Track(CustomTrackingRecord)

Adds an activity tracking record to the current workflow instance.

(Inherited from NativeActivityContext)

Applies to