Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

WorkflowControlClient Constructor (WorkflowControlEndpoint^)

.NET Framework (current version)
 

Initializes a new instance of the WorkflowControlClient class with the specified WorkflowControlEndpoint.

Namespace:   System.ServiceModel.Activities
Assembly:  System.ServiceModel.Activities (in System.ServiceModel.Activities.dll)

public:
WorkflowControlClient(
	WorkflowControlEndpoint^ workflowEndpoint
)

Parameters

workflowEndpoint
Type: System.ServiceModel.Activities::WorkflowControlEndpoint^

The workflow control endpoint.

The following example shows how to create a WorkflowControlClient instance using this constructor.

WorkflowControlEndpoint wce = new WorkflowControlEndpoint(new BasicHttpBinding(), new EndpointAddress(new Uri("http://localhost/DataflowControl.xaml")));
WorkflowControlClient controlClient = new WorkflowControlClient(wce);

.NET Framework
Available since 4.0
Return to top
Show:
© 2017 Microsoft