次の方法で共有


WorkflowControlClient.Suspend メソッド

定義

指定したワークフロー インスタンスを中断します。

オーバーロード

Suspend(Guid)

指定したワークフロー インスタンスを中断します。

Suspend(Guid, String)

指定したワークフロー インスタンスを中断します。

Suspend(Guid)

指定したワークフロー インスタンスを中断します。

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

パラメーター

instanceId
Guid

中断するワークフロー インスタンス。

次の例では、WorkflowControlClient を使用してワークフロー インスタンスを中断する方法を示します。

IWorkflowCreation creationClient = new ChannelFactory<IWorkflowCreation>(new BasicHttpBinding(), "http://localhost/DataflowControl.xaml/Creation").CreateChannel();
Guid instanceId = creationClient.CreateSuspended(null);
WorkflowControlClient controlClient = new WorkflowControlClient(
    new BasicHttpBinding(),
    new EndpointAddress(new Uri("http://localhost/DataflowControl.xaml")));

// ...

controlClient.Suspend(instanceId);

適用対象

Suspend(Guid, String)

指定したワークフロー インスタンスを中断します。

public:
 void Suspend(Guid instanceId, System::String ^ reason);
public void Suspend (Guid instanceId, string reason);
member this.Suspend : Guid * string -> unit
Public Sub Suspend (instanceId As Guid, reason As String)

パラメーター

instanceId
Guid

中断するワークフロー インスタンス。

reason
String

ワークフロー インスタンスを中断する理由。

次の例では、WorkflowControlClient を使用してワークフロー インスタンスを中断する方法を示します。

IWorkflowCreation creationClient = new ChannelFactory<IWorkflowCreation>(new BasicHttpBinding(), "http://localhost/DataflowControl.xaml/Creation").CreateChannel();
Guid instanceId = creationClient.CreateSuspended(null);
WorkflowControlClient controlClient = new WorkflowControlClient(
    new BasicHttpBinding(),
    new EndpointAddress(new Uri("http://localhost/DataflowControl.xaml")));

// ...

controlClient.Suspend(instanceId, "Sample to suspend");

適用対象