1 write to PerformanceCounterManager
System.Workflow.Runtime (1)
WorkflowRuntime.cs (1)
189this.PerformanceCounterManager = new PerformanceCounterManager();
9 references to PerformanceCounterManager
System.Workflow.Runtime (9)
Hosting\DefaultWorkflowSchedulerService.cs (2)
162if (queueCounters == null && this.Runtime.PerformanceCounterManager != null) 164queueCounters = this.Runtime.PerformanceCounterManager.CreateCounters(ExecutionStringManager.PerformanceCounterWorkflowsWaitingName);
Hosting\ManualWorkflowSchedulerService.cs (2)
286if (queueCounters == null && this.Runtime.PerformanceCounterManager != null) 288queueCounters = this.Runtime.PerformanceCounterManager.CreateCounters(ExecutionStringManager.PerformanceCounterWorkflowsWaitingName);
WorkflowRuntime.cs (5)
1160if (this.PerformanceCounterManager != null) 1162this.PerformanceCounterManager.Initialize(this); 1163this.PerformanceCounterManager.SetInstanceName(this.Name); 1370if (this.PerformanceCounterManager != null) 1372this.PerformanceCounterManager.Uninitialize(this);