3 instantiations of PerformanceCounterCategory
System (3)
services\monitoring\system\diagnosticts\PerformanceCounterCategory.cs (3)
255return new PerformanceCounterCategory(categoryName, machineName); 514categories[index] = new PerformanceCounterCategory(categoryNames[index], machineName); 566PerformanceCounterCategory category = new PerformanceCounterCategory(categoryName, machineName);
21 references to PerformanceCounterCategory
System (14)
net\System\Net\_NetworkingPerfCounters.cs (1)
189if (!PerformanceCounterCategory.Exists(categoryName))
services\monitoring\system\diagnosticts\CounterCreationData.cs (2)
73PerformanceCounterCategory.CheckValidCounter(value); 90PerformanceCounterCategory.CheckValidHelp(value);
services\monitoring\system\diagnosticts\InstanceDataCollection.cs (1)
16/// <see cref='System.Diagnostics.PerformanceCounterCategory.ReadCategory'/> method.
services\monitoring\system\diagnosticts\InstanceDataCollectionCollection.cs (1)
15/// The collection returned from the <see cref='System.Diagnostics.PerformanceCounterCategory.ReadCategory'/> method.
services\monitoring\system\diagnosticts\PerformanceCounterCategory.cs (9)
204public static PerformanceCounterCategory Create(string categoryName, string categoryHelp, string counterName, string counterHelp) { 211public static PerformanceCounterCategory Create(string categoryName, string categoryHelp, PerformanceCounterCategoryType categoryType, string counterName, string counterHelp) { 222public static PerformanceCounterCategory Create(string categoryName, string categoryHelp, CounterCreationDataCollection counterData) { 228public static PerformanceCounterCategory Create(string categoryName, string categoryHelp, PerformanceCounterCategoryType categoryType, CounterCreationDataCollection counterData) { 497public static PerformanceCounterCategory[] GetCategories() { 504public static PerformanceCounterCategory[] GetCategories(string machineName) { 512PerformanceCounterCategory[] categories = new PerformanceCounterCategory[categoryNames.Length]; 566PerformanceCounterCategory category = new PerformanceCounterCategory(categoryName, machineName);
System.ServiceModel (6)
System\ServiceModel\Diagnostics\PerformanceCountersBase.cs (2)
53if (PerformanceCounterCategory.InstanceExists(instanceName, categoryName)) 79if (PerformanceCounterCategory.InstanceExists(nameWithHash, categoryName))
System\ServiceModel\Diagnostics\PerformanceCountersFactory.cs (4)
164if (PerformanceCounterCategory.Exists(PerformanceCounterStrings.SERVICEMODELOPERATION.OperationPerfCounters) && 165PerformanceCounterCategory.Exists(PerformanceCounterStrings.SERVICEMODELENDPOINT.EndpointPerfCounters) && 166PerformanceCounterCategory.Exists(PerformanceCounterStrings.SERVICEMODELSERVICE.ServicePerfCounters)) 186PerformanceCounterCategory.Exists(dummyValue);
System.Workflow.Runtime (1)
PerformanceCounterManager.cs (1)
252if (PerformanceCounterCategory.Exists(c_PerformanceCounterCategoryName))