4 instantiations of PerformanceCounterCategory
Microsoft.Extensions.Diagnostics.ResourceMonitoring (1)
Windows\PerformanceCounterFactory.cs (1)
17var category = new PerformanceCounterCategory(categoryName);
System.Diagnostics.PerformanceCounter (3)
System\Diagnostics\PerformanceCounterCategory.cs (3)
228return new PerformanceCounterCategory(categoryName, machineName); 493categories[index] = new PerformanceCounterCategory(categoryNames[index], machineName); 547PerformanceCounterCategory category = new PerformanceCounterCategory(categoryName, machineName);
15 references to PerformanceCounterCategory
Microsoft.Extensions.Diagnostics.ResourceMonitoring (1)
Windows\PerformanceCounterFactory.cs (1)
17var category = new PerformanceCounterCategory(categoryName);
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
510[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.PerformanceCounterCategory))]
System.Diagnostics.PerformanceCounter (13)
System\Diagnostics\CounterCreationData.cs (2)
51PerformanceCounterCategory.CheckValidCounter(value); 64PerformanceCounterCategory.CheckValidHelp(value);
System\Diagnostics\InstanceDataCollection.cs (1)
13/// <see cref='System.Diagnostics.PerformanceCounterCategory.ReadCategory'/> method.
System\Diagnostics\InstanceDataCollectionCollection.cs (1)
10/// The collection returned from the <see cref='System.Diagnostics.PerformanceCounterCategory.ReadCategory'/> method.
System\Diagnostics\PerformanceCounterCategory.cs (9)
180public static PerformanceCounterCategory Create(string categoryName, string categoryHelp, string counterName, string counterHelp) 189public static PerformanceCounterCategory Create(string categoryName, string categoryHelp, PerformanceCounterCategoryType categoryType, string counterName, string counterHelp) 199public static PerformanceCounterCategory Create(string categoryName, string categoryHelp, CounterCreationDataCollection counterData) 204public static PerformanceCounterCategory Create(string categoryName, string categoryHelp, PerformanceCounterCategoryType categoryType, CounterCreationDataCollection counterData) 477public static PerformanceCounterCategory[] GetCategories() 485public static PerformanceCounterCategory[] GetCategories(string machineName) 491PerformanceCounterCategory[] categories = new PerformanceCounterCategory[categoryNames.Length]; 547PerformanceCounterCategory category = new PerformanceCounterCategory(categoryName, machineName);