//--------------------------------------------------------------------- // Static members /// <summary> /// Adds the performance counters managed by the class to the performance counter /// set passed (if not null). This will be called during the application installation /// process when performance counters are being installed. /// </summary> /// <param name="perfCounters">The application's performance counter set (or <c>null</c>).</param> /// <param name="perfPrefix">The string to prefix any performance counter names (or <c>null</c>).</param> public static void InstallPerfCounters(PerfCounterSet perfCounters, string perfPrefix) { Perf.Install(perfCounters, perfPrefix); }