WorkflowUpdateableControlClient.UpdateAsync Method

Definition

Begins an asynchronous update operation.

Overloads

UpdateAsync(Guid, WorkflowIdentity)

Begins an asynchronous update operation.

UpdateAsync(Guid, WorkflowIdentity, Object)

Begins an asynchronous update operation.

UpdateAsync(Guid, WorkflowIdentity)

Begins an asynchronous update operation.

public:
 void UpdateAsync(Guid instanceId, System::Activities::WorkflowIdentity ^ updatedDefinitionIdentity);
public void UpdateAsync (Guid instanceId, System.Activities.WorkflowIdentity updatedDefinitionIdentity);
member this.UpdateAsync : Guid * System.Activities.WorkflowIdentity -> unit
Public Sub UpdateAsync (instanceId As Guid, updatedDefinitionIdentity As WorkflowIdentity)

Parameters

instanceId
Guid

The workflow instance to update.

updatedDefinitionIdentity
WorkflowIdentity

The updated workflow identity.

Remarks

This method stores in the task it returns all non-usage exceptions that the method's synchronous counterpart can throw. If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as ArgumentException, are still thrown synchronously. For the stored exceptions, see the exceptions thrown by Update(Guid, WorkflowIdentity).

Applies to

UpdateAsync(Guid, WorkflowIdentity, Object)

Begins an asynchronous update operation.

public:
 void UpdateAsync(Guid instanceId, System::Activities::WorkflowIdentity ^ updatedDefinitionIdentity, System::Object ^ userState);
public void UpdateAsync (Guid instanceId, System.Activities.WorkflowIdentity updatedDefinitionIdentity, object userState);
member this.UpdateAsync : Guid * System.Activities.WorkflowIdentity * obj -> unit
Public Sub UpdateAsync (instanceId As Guid, updatedDefinitionIdentity As WorkflowIdentity, userState As Object)

Parameters

instanceId
Guid

The workflow instance to update.

updatedDefinitionIdentity
WorkflowIdentity

The updated workflow identity.

userState
Object

A user-defined object that contains state information associated with the asynchronous update operation.

Applies to