12 references to CounterSetInstanceType
System.Core (8)
System\Diagnostics\PerformanceData\CounterSet.cs (2)
32internal CounterSetInstanceType m_instType; 47public CounterSet(Guid providerGuid, Guid counterSetGuid, CounterSetInstanceType instanceType) {
System\Diagnostics\PerformanceData\CounterSetInstance.cs (1)
65if (m_counterSet.m_instType == CounterSetInstanceType.Single) {
System\Diagnostics\PerformanceData\PerfProviderCollection.cs (5)
43private static CounterSetInstanceType[] s_counterSetInstanceTypes = (CounterSetInstanceType[])Enum.GetValues(typeof(CounterSetInstanceType)); 117internal static bool ValidateCounterSetInstanceType(CounterSetInstanceType inCounterSetInstanceType) { 118foreach (CounterSetInstanceType DefinedCounterSetInstanceType in s_counterSetInstanceTypes) {
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);