다음을 통해 공유


WorkflowControlClient.Unsuspend(Guid) 메서드

정의

지정된 워크플로 인스턴스의 일시 중단을 해제합니다.

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

매개 변수

instanceId
Guid

일시 중단을 해제할 워크플로 인스턴스입니다.

예제

다음 예제에서는 Unsuspend 메서드를 사용하여 워크플로 인스턴스의 일시 중단을 해제하는 방법을 보여 줍니다.

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);

적용 대상