15 references to CorrelationService
System.Workflow.Activities (15)
EventSinkActivity.cs (6)
225CorrelationService.Initialize(provider, this, type, eventName, this.WorkflowInstanceId); 302this.ActivitySubscribed = CorrelationService.Subscribe(executionContext, this, this.InterfaceType, this.EventName, this, this.WorkflowInstanceId); 342CorrelationService.Unsubscribe(context, this, this.InterfaceType, this.EventName, this); 390CorrelationService.Subscribe(parentContext, this, InterfaceType, EventName, parentEventHandler, this.WorkflowInstanceId); 400CorrelationService.Unsubscribe(parentContext, this, InterfaceType, EventName, parentEventHandler); 411return CorrelationService.ResolveQueueName(this, InterfaceType, EventName);
Executors\InboundActivityHelper.cs (3)
24IComparable queueName = CorrelationService.ResolveQueueName(activity, interfaceType, operation); 29CorrelationService.UninitializeFollowers(interfaceType, operation, queue); 65CorrelationService.InvalidateCorrelationToken(activity, interfaceType, operation, message.Args);
InvokeMethodActivity.cs (1)
211CorrelationService.InvalidateCorrelationToken(this, type, methodName, actualParameters);
WebServiceReceive.cs (5)
243this.ActivitySubscribed = CorrelationService.Subscribe(executionContext, this, this.InterfaceType, this.MethodName, this, this.WorkflowInstanceId); 279CorrelationService.InvalidateCorrelationToken(this, interfaceType, operation, message.Args); 361CorrelationService.Unsubscribe(context, this, this.InterfaceType, this.MethodName, this); 391CorrelationService.Subscribe(parentContext, this, this.InterfaceType, this.MethodName, parentEventHandler, this.WorkflowInstanceId); 401CorrelationService.Unsubscribe(parentContext, this, this.InterfaceType, this.MethodName, parentEventHandler);