Ejemplo n.º 1
0
 public static bool CheckCounters()
 {
     return
         (PerformanceCounterCategory.Exists(categoryName) &&
          Counters.All(counter => PerformanceCounterCategory.CounterExists(counter.CounterName, categoryName)));
 }
Ejemplo n.º 2
0
 static bool CheckCountersExist()
 {
     return(Counters.All(counter => PerformanceCounterCategory.CounterExists(counter.CounterName, categoryName)));
 }