WorkflowControlClient.Unsuspend(Guid) Methode

Definition

Hebt die angegebene Workflowinstanz auf.

public:
 void Unsuspend(Guid instanceId);
public void Unsuspend(Guid instanceId);
member this.Unsuspend : Guid -> unit
Public Sub Unsuspend (instanceId As Guid)

Parameter

instanceId
Guid

Die Workflowinstanz, die nicht zugewiesen werden soll.

Beispiele

Das folgende Beispiel zeigt, wie Sie eine Workflowinstanz mithilfe der Unsuspend Methode aufheben.

IWorkflowCreation creationClient = new ChannelFactory<IWorkflowCreation>(new BasicHttpBinding(), "http://localhost/DataflowControl.xaml/Creation").CreateChannel();

// Start a new instance of the workflow
Guid instanceId = creationClient.CreateSuspended(null);
WorkflowControlClient controlClient = new WorkflowControlClient(
    new BasicHttpBinding(),
    new EndpointAddress(new Uri("http://localhost/DataflowControl.xaml")));
controlClient.Unsuspend(instanceId);

Gilt für: