次の方法で共有


WorkflowControlClient.Abandon メソッド

定義

ワークフロー インスタンスを破棄します。

オーバーロード

Abandon(Guid)

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

Abandon(Guid, String)

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

Abandon(Guid)

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

public:
 void Abandon(Guid instanceId);
public void Abandon (Guid instanceId);
member this.Abandon : Guid -> unit
Public Sub Abandon (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.Unsuspend(instanceId);
// ...
controlClient.Abandon(instanceId);

適用対象

Abandon(Guid, String)

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

public:
 void Abandon(Guid instanceId, System::String ^ reason);
public void Abandon (Guid instanceId, string reason);
member this.Abandon : Guid * string -> unit
Public Sub Abandon (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.Unsuspend(instanceId);
// ...
controlClient.Abandon(instanceId, "Sample to abandon");

適用対象