NativeActivityUpdateContext Class

Definition

Represents a native activity update context.

public ref class NativeActivityUpdateContext
public class NativeActivityUpdateContext
type NativeActivityUpdateContext = class
Public Class NativeActivityUpdateContext
Inheritance
NativeActivityUpdateContext

Remarks

This class supports the versioning and dynamic update functionality of Windows Workflow Foundation. For more information about workflow versioning, workflow identity, and dynamic update, see the following topics.

Workflow Versioning
Describes the workflow versioning functionality introduced in .NET Framework 4.5.

Dynamic Update
Describes how to update the workflow definition of a persisted workflow instance by using dynamic update.

Using WorkflowApplication Identity and Versioning
Describes how to use WorkflowIdentity to host multiple versions of a workflow side-by-side.

Side by Side Versioning in WorkflowServiceHost
Describes how to host multiple versions of a workflow on a single endpoint.

How to: Host Multiple Versions of a Workflow Side-by-Side
This step in the Getting Started Tutorial demonstrates updating a workflow definition, and hosting workflows using both the old and new definition at the same time.

How to: Update the Definition of a Running Workflow Instance
This step in the Getting Started Tutorial demonstrates updating persisted workflow instances to use a new workflow definition.

Properties

ActivityInstanceId

Gets the unique identifier of the currently executing activity instance.

DefaultBookmarkScope

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

IsCancellationRequested

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

Methods

CreateBookmark()

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

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.

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.

CreateBookmark(String)

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

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.

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.

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.

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 and the specified scope of the bookmark and the specified option that governs how the bookmark is used during the execution of the current NativeActivity.

DisallowUpdate(String)

Disallows the updating of the NativeActivityUpdateContext.

Equals(Object)

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

(Inherited from Object)
FindExecutionProperty(String)

Finds the workflow execution property with the specified name.

GetHashCode()

Serves as the default hash function.

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

Returns the typed location for the specified referenced location.

GetSavedOriginalValue(Activity)

Indicates the object to save the original value for the current activity.

GetSavedOriginalValue(String)

Indicates the object to save the original value for the current activity.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
GetValue(Argument)

Gets the value of the specified Argument.

GetValue(RuntimeArgument)

Gets the value of the specified RuntimeArgument.

GetValue(Variable)

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

GetValue<T>(Variable<T>)

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

IsNewlyAdded(Activity)

Initializes whether the NativeActivityUpdateContext is newly added.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
RemoveAllBookmarks()

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

RemoveBookmark(Bookmark)

Removes the specified bookmark from the currently executing NativeActivity instance.

RemoveBookmark(String)

Removes the bookmark with the specified name.

RemoveBookmark(String, BookmarkScope)

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

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.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ScheduleActivity(Activity)

Schedules the specified NativeActivity child activity for execution.

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.

ScheduleActivity(Activity, CompletionCallback, 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.

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.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

SetValue(Argument, Object)

Assigns a value to the specified Argument.

SetValue(Variable, Object)

Assigns the specified value object to the specified variable object.

SetValue<T>(Variable<T>, T)

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

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to