4 instantiations of CounterSet
System.ServiceModel (3)
System\ServiceModel\Diagnostics\EndpointPerformanceCountersV2.cs (1)
80return new CounterSet(serviceModelProviderId, endpointCounterSetId, CounterSetInstanceType.Multiple);
System\ServiceModel\Diagnostics\OperationPerformanceCountersV2.cs (1)
76return new CounterSet(serviceModelProviderId, operationCounterSetId, CounterSetInstanceType.Multiple);
System\ServiceModel\Diagnostics\ServicePerformanceCountersV2.cs (1)
95return new CounterSet(serviceModelProviderId, serviceCounterSetId, CounterSetInstanceType.Multiple);
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Diagnostics\WorkflowServiceHostPerformanceCounters.cs (1)
234return new CounterSet(workflowServiceHostProviderId, workflowServiceHostCounterSetId, CounterSetInstanceType.Multiple);
14 references to CounterSet
System.Core (2)
System\Diagnostics\PerformanceData\CounterSetInstance.cs (2)
22internal CounterSet m_counterSet; 31internal CounterSetInstance(CounterSet counterSetDefined, String instanceName) {
System.ServiceModel (9)
System\ServiceModel\Diagnostics\EndpointPerformanceCountersV2.cs (3)
23static volatile CounterSet endpointCounterSet; // Defines the counter set 49CounterSet localCounterSet = CreateCounterSet(); 78static CounterSet CreateCounterSet()
System\ServiceModel\Diagnostics\OperationPerformanceCountersV2.cs (3)
23static volatile CounterSet operationCounterSet; // Defines the counter set 49CounterSet localCounterSet = CreateCounterSet(); 74static CounterSet CreateCounterSet()
System\ServiceModel\Diagnostics\ServicePerformanceCountersV2.cs (3)
23static volatile CounterSet serviceCounterSet; // Defines the counter set 36CounterSet localCounterSet = CreateCounterSet(); 93static CounterSet CreateCounterSet()
System.ServiceModel.Activities (3)
System\ServiceModel\Activities\Diagnostics\WorkflowServiceHostPerformanceCounters.cs (3)
20static volatile CounterSet workflowServiceHostCounterSet; // Defines the counter set 122CounterSet localCounterSet = CreateCounterSet(); 230static CounterSet CreateCounterSet()