Implemented interface member:
method
GetService
System.IServiceProvider.GetService(System.Type)
7 references to GetService
System.Workflow.Activities (6)
Executors\InboundActivityHelper.cs (1)
22WorkflowQueuingService queueSvcs = (WorkflowQueuingService)context.GetService(typeof(WorkflowQueuingService));
InvokeMethodActivity.cs (1)
196object serviceValue = executionContext.GetService(type);
InvokeSchedule.cs (1)
172IStartWorkflow workflowInvoker = executionContext.GetService(typeof(IStartWorkflow)) as IStartWorkflow;
LocalService\CorrelationTokenInvalidatedHandler.cs (1)
86WorkflowSubscriptionService subscriptionService = (WorkflowSubscriptionService)context.GetService(typeof(WorkflowSubscriptionService));
WebServiceReceive.cs (2)
251WorkflowQueuingService queueSvcs = (WorkflowQueuingService)context.GetService(typeof(WorkflowQueuingService)); 324WorkflowQueuingService queuingService = (WorkflowQueuingService)context.GetService(typeof(WorkflowQueuingService));
System.Workflow.ComponentModel (1)
AuthoringOM\ActivityExecutionContext.cs (1)
124return (T)this.GetService(typeof(T));