28 references to Runtime
System.Workflow.Runtime (27)
Hosting\DefaultWorkflowLoaderService.cs (1)
50ITypeProvider typeProvider = this.Runtime.GetService<ITypeProvider>();
Hosting\DefaultWorkflowSchedulerService.cs (2)
162if (queueCounters == null && this.Runtime.PerformanceCounterManager != null) 164queueCounters = this.Runtime.PerformanceCounterManager.CreateCounters(ExecutionStringManager.PerformanceCounterWorkflowsWaitingName);
Hosting\DefaultWorkflowTransactionService.cs (2)
62if ((!_ignoreCommonEnableRetries) && (null != base.Runtime)) 64NameValueConfigurationCollection commonConfigurationParameters = base.Runtime.CommonParameters;
Hosting\ManualWorkflowSchedulerService.cs (2)
286if (queueCounters == null && this.Runtime.PerformanceCounterManager != null) 288queueCounters = this.Runtime.PerformanceCounterManager.CreateCounters(ExecutionStringManager.PerformanceCounterWorkflowsWaitingName);
Hosting\SharedConnectionWorkflowTransactionService.cs (5)
85if (this.Runtime == null) 87this.dbResourceAllocator = new DbResourceAllocator(this.Runtime, this.configParameters, this.unvalidatedConnectionString); 110this.dbResourceAllocator = new DbResourceAllocator(this.Runtime, this.configParameters, this.unvalidatedConnectionString); 117if ((!_ignoreCommonEnableRetries) && (null != base.Runtime)) 119NameValueConfigurationCollection commonConfigurationParameters = base.Runtime.CommonParameters;
Hosting\SqlWorkflowPersistenceService.cs (7)
822_dbResourceAllocator = new DbResourceAllocator(this.Runtime, this.configParameters, this.unvalidatedConnectionString); 825_transactionService = Runtime.GetService<WorkflowCommitWorkBatchService>(); 831if ((!_ignoreCommonEnableRetries) && (null != base.Runtime)) 833NameValueConfigurationCollection commonConfigurationParameters = base.Runtime.CommonParameters; 895WorkflowInstance instance = Runtime.GetWorkflow(instanceId); 915WorkflowInstance instance = Runtime.GetWorkflow(instanceId); 951Runtime.GetWorkflow(id).Load();
Hosting\WorkflowRuntimeService.cs (2)
51Runtime.RaiseServicesExceptionNotHandledEvent(exception, instanceId); 56Runtime.RaiseServicesExceptionNotHandledEvent(exception, instanceId);
Hosting\WorkflowTimerService.cs (2)
19WorkflowSchedulerService schedulerService = this.Runtime.GetService(typeof(WorkflowSchedulerService)) as WorkflowSchedulerService; 25WorkflowSchedulerService schedulerService = this.Runtime.GetService(typeof(WorkflowSchedulerService)) as WorkflowSchedulerService;
Tracking\SqlTrackingService.cs (4)
189_dbResourceAllocator = new DbResourceAllocator(this.Runtime, _parameters, _unvalidatedConnectionString); 192_transactionService = this.Runtime.GetService<WorkflowCommitWorkBatchService>(); 198if ((!_ignoreCommonEnableRetries) && (null != base.Runtime)) 200NameValueConfigurationCollection commonConfigurationParameters = base.Runtime.CommonParameters;
System.WorkflowServices (1)
System\ServiceModel\Description\WorkflowServiceBehavior.cs (1)
443this.inner.SetRuntime(this.Runtime);