15 references to
System (15)
services\monitoring\system\diagnosticts\CounterCreationDataCollection.cs (1)
77this.Add(value[i]);
services\monitoring\system\diagnosticts\PerformanceCounterCategory.cs (12)
319if (counterData[i].CounterName == null || counterData[i].CounterName.Length == 0) { 323int currentSampleType = (int)counterData[i].CounterType; 336currentSampleType = (int)counterData[i + 1].CounterType; 347currentSampleType = (int)counterData[i - 1].CounterType; 363if (h.ContainsKey(counterData[i].CounterName)) { 364throw new ArgumentException(SR.GetString(SR.DuplicateCounterName, counterData[i].CounterName)); 367h.Add(counterData[i].CounterName, String.Empty); 370if (counterData[i].CounterHelp == null || counterData[i].CounterHelp.Length == 0) { 371counterData[i].CounterHelp = counterData[i].CounterName;
services\monitoring\system\diagnosticts\PerformanceCounterLib.cs (2)
477counters[i] = creationData[i].CounterName; 478counterTypes[i] = ((int) creationData[i].CounterType).ToString(CultureInfo.InvariantCulture);