1 instantiation of PerformanceCounterStatement
System.Workflow.Runtime (1)
PerformanceCounterManager.cs (1)
265PerformanceCounterStatement newStatement = new PerformanceCounterStatement(CreateCounters(currentData.Name), currentMapping.Operation);
9 references to PerformanceCounterStatement
System.Workflow.Runtime (9)
PerformanceCounterManager.cs (9)
206private Dictionary<PerformanceCounterAction, List<PerformanceCounterStatement>> m_actionStatements; 250Dictionary<PerformanceCounterAction, List<PerformanceCounterStatement>> actionStatements = new Dictionary<PerformanceCounterAction, List<PerformanceCounterStatement>>(); 262actionStatements.Add(currentMapping.Action, new List<PerformanceCounterStatement>()); 264List<PerformanceCounterStatement> lStatements = actionStatements[currentMapping.Action]; 265PerformanceCounterStatement newStatement = new PerformanceCounterStatement(CreateCounters(currentData.Name), currentMapping.Operation); 278List<PerformanceCounterStatement> lStatements; 282foreach (PerformanceCounterStatement statement in lStatements) 313private void NotifyCounter(PerformanceCounterAction action, PerformanceCounterStatement statement, WorkflowExecutor executor)