SignalR.PerformanceCounterInstaller.UninstallCounters C# (CSharp) Method

UninstallCounters() public method

Uninstalls SignalR performance counters.
public UninstallCounters ( ) : void
return void
        public void UninstallCounters()
        {
            if (PerformanceCounterCategory.Exists(PerformanceCounters.CategoryName))
            {
                PerformanceCounterCategory.Delete(PerformanceCounters.CategoryName);
            }
        }
PerformanceCounterInstaller