2 instantiations of WorkflowControlEndpoint
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\Configuration\WorkflowControlEndpointElement.cs (1)
109WorkflowControlEndpoint result = new WorkflowControlEndpoint();
System\ServiceModel\Activities\Description\WorkflowInstanceManagementBehavior.cs (1)
199new WorkflowControlEndpoint(controlEndpointBinding, address),
13 references to WorkflowControlEndpoint
System.ServiceModel.Activities (13)
System\ServiceModel\Activities\Configuration\WorkflowControlEndpointCollectionElement.cs (1)
9public class WorkflowControlEndpointCollectionElement : StandardEndpointCollectionElement<WorkflowControlEndpoint, WorkflowControlEndpointElement>
System\ServiceModel\Activities\Configuration\WorkflowControlEndpointElement.cs (2)
23get { return typeof(WorkflowControlEndpoint); } 109WorkflowControlEndpoint result = new WorkflowControlEndpoint();
System\ServiceModel\Activities\Description\WorkflowInstanceManagementBehavior.cs (2)
169ServiceEndpoint endpoint = new ServiceEndpoint(WorkflowControlEndpoint.WorkflowControlServiceContract, controlEndpointBinding, address); 189foreach (OperationDescription operation in WorkflowControlEndpoint.WorkflowControlServiceContract.Operations)
System\ServiceModel\Activities\Dispatcher\ControlOperationInvoker.cs (2)
68if (description.DeclaringContract == WorkflowControlEndpoint.WorkflowControlServiceContract || 69description.DeclaringContract == WorkflowControlEndpoint.WorkflowControlServiceBaseContract)
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (1)
328if (endpoint is WorkflowControlEndpoint)
System\ServiceModel\Activities\WorkflowControlClient.cs (1)
75public WorkflowControlClient(WorkflowControlEndpoint workflowEndpoint)
System\ServiceModel\Activities\WorkflowControlEndpoint.cs (3)
28: this(WorkflowControlEndpoint.GetDefaultBinding(), 29new EndpointAddress(new Uri(WorkflowControlEndpoint.DefaultBaseUri, new Uri(Guid.NewGuid().ToString(), UriKind.Relative)))) 34: base(WorkflowControlEndpoint.WorkflowControlServiceContract, binding, address)
System\ServiceModel\Activities\WorkflowUpdateableControlClient.cs (1)
80public WorkflowUpdateableControlClient(WorkflowControlEndpoint workflowEndpoint)