WorkflowControlClient 생성자
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
WorkflowControlClient 클래스의 새 인스턴스를 초기화합니다.
WorkflowControlClient() |
WorkflowControlClient 클래스의 새 인스턴스를 초기화합니다. |
WorkflowControlClient(WorkflowControlEndpoint) |
지정된 WorkflowControlClient를 사용하여 WorkflowControlEndpoint 클래스의 새 인스턴스를 초기화합니다. |
WorkflowControlClient(String) |
지정된 엔드포인트 구성을 사용하여 WorkflowControlClient 클래스의 새 인스턴스를 초기화합니다. |
WorkflowControlClient(Binding, EndpointAddress) |
지정된 바인딩 및 WorkflowControlClient를 사용하여 WorkflowControlEndpoint 클래스의 새 인스턴스를 초기화합니다. |
WorkflowControlClient(String, EndpointAddress) |
지정된 엔드포인트 구성 및 WorkflowControlClient를 사용하여 EndpointAddress 클래스의 새 인스턴스를 초기화합니다. |
WorkflowControlClient(String, String) |
지정된 엔드포인트 구성 및 엔드포인트 주소를 사용하여 WorkflowControlClient 클래스의 새 인스턴스를 초기화합니다. |
WorkflowControlClient 클래스의 새 인스턴스를 초기화합니다.
public:
WorkflowControlClient();
public WorkflowControlClient ();
Public Sub New ()
적용 대상
.NET Framework 4.8.1 및 기타 버전
제품 | 버전 |
---|---|
.NET Framework | 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
지정된 WorkflowControlClient를 사용하여 WorkflowControlEndpoint 클래스의 새 인스턴스를 초기화합니다.
public:
WorkflowControlClient(System::ServiceModel::Activities::WorkflowControlEndpoint ^ workflowEndpoint);
public WorkflowControlClient (System.ServiceModel.Activities.WorkflowControlEndpoint workflowEndpoint);
new System.ServiceModel.Activities.WorkflowControlClient : System.ServiceModel.Activities.WorkflowControlEndpoint -> System.ServiceModel.Activities.WorkflowControlClient
Public Sub New (workflowEndpoint As WorkflowControlEndpoint)
매개 변수
- workflowEndpoint
- WorkflowControlEndpoint
워크플로 제어 엔드포인트입니다.
예제
다음 예제에서는 이 생성자를 사용하여 WorkflowControlClient 인스턴스를 만드는 방법을 보여 줍니다.
WorkflowControlEndpoint wce = new WorkflowControlEndpoint(new BasicHttpBinding(), new EndpointAddress(new Uri("http://localhost/DataflowControl.xaml")));
WorkflowControlClient controlClient = new WorkflowControlClient(wce);
적용 대상
.NET Framework 4.8.1 및 기타 버전
제품 | 버전 |
---|---|
.NET Framework | 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
지정된 엔드포인트 구성을 사용하여 WorkflowControlClient 클래스의 새 인스턴스를 초기화합니다.
public:
WorkflowControlClient(System::String ^ endpointConfigurationName);
public WorkflowControlClient (string endpointConfigurationName);
new System.ServiceModel.Activities.WorkflowControlClient : string -> System.ServiceModel.Activities.WorkflowControlClient
Public Sub New (endpointConfigurationName As String)
매개 변수
- endpointConfigurationName
- String
사용할 구성입니다.
예제
다음 예제에서는 이 생성자를 사용하는 방법을 보여 줍니다.
WorkflowControlClient controlClient = new WorkflowControlClient("ConfigName");
적용 대상
.NET Framework 4.8.1 및 기타 버전
제품 | 버전 |
---|---|
.NET Framework | 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
지정된 바인딩 및 WorkflowControlClient를 사용하여 WorkflowControlEndpoint 클래스의 새 인스턴스를 초기화합니다.
public:
WorkflowControlClient(System::ServiceModel::Channels::Binding ^ binding, System::ServiceModel::EndpointAddress ^ remoteAddress);
public WorkflowControlClient (System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress);
new System.ServiceModel.Activities.WorkflowControlClient : System.ServiceModel.Channels.Binding * System.ServiceModel.EndpointAddress -> System.ServiceModel.Activities.WorkflowControlClient
Public Sub New (binding As Binding, remoteAddress As EndpointAddress)
매개 변수
- binding
- Binding
바인딩입니다.
- remoteAddress
- EndpointAddress
워크플로 제어 엔드포인트입니다.
예제
다음 예제에서는 이 생성자를 사용하는 방법을 보여 줍니다.
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);
적용 대상
.NET Framework 4.8.1 및 기타 버전
제품 | 버전 |
---|---|
.NET Framework | 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
지정된 엔드포인트 구성 및 WorkflowControlClient를 사용하여 EndpointAddress 클래스의 새 인스턴스를 초기화합니다.
public:
WorkflowControlClient(System::String ^ endpointConfigurationName, System::ServiceModel::EndpointAddress ^ remoteAddress);
public WorkflowControlClient (string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress);
new System.ServiceModel.Activities.WorkflowControlClient : string * System.ServiceModel.EndpointAddress -> System.ServiceModel.Activities.WorkflowControlClient
Public Sub New (endpointConfigurationName As String, remoteAddress As EndpointAddress)
매개 변수
- endpointConfigurationName
- String
엔드포인트 구성입니다.
- remoteAddress
- EndpointAddress
엔드포인트 주소입니다.
예제
다음 예제에서는 이 생성자를 사용하는 방법을 보여 줍니다.
WorkflowControlClient controlClient = new WorkflowControlClient("ConfigName", new EndpointAddress(new Uri("http://localhost/DataflowControl.xaml")));
적용 대상
.NET Framework 4.8.1 및 기타 버전
제품 | 버전 |
---|---|
.NET Framework | 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
지정된 엔드포인트 구성 및 엔드포인트 주소를 사용하여 WorkflowControlClient 클래스의 새 인스턴스를 초기화합니다.
public:
WorkflowControlClient(System::String ^ endpointConfigurationName, System::String ^ remoteAddress);
public WorkflowControlClient (string endpointConfigurationName, string remoteAddress);
new System.ServiceModel.Activities.WorkflowControlClient : string * string -> System.ServiceModel.Activities.WorkflowControlClient
Public Sub New (endpointConfigurationName As String, remoteAddress As String)
매개 변수
- endpointConfigurationName
- String
엔드포인트 구성입니다.
- remoteAddress
- String
엔드포인트 주소입니다.
예제
다음 예제에서는 이 생성자를 사용하는 방법을 보여 줍니다.
WorkflowControlClient controlClient = new WorkflowControlClient("ConfigName", "http://localhost/DataflowControl.xaml");
적용 대상
.NET Framework 4.8.1 및 기타 버전
제품 | 버전 |
---|---|
.NET Framework | 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET 피드백
.NET은(는) 오픈 소스 프로젝트입니다. 다음 링크를 선택하여 피드백을 제공해 주세요.