Amib.Threading.Internal.STPPerformanceCounter.AddCounterToCollection C# (CSharp) Метод

AddCounterToCollection() публичный Метод

public AddCounterToCollection ( System.Diagnostics.CounterCreationDataCollection counterData ) : void
counterData System.Diagnostics.CounterCreationDataCollection
Результат void
        public void AddCounterToCollection(CounterCreationDataCollection counterData)
        {
            var counterCreationData = new CounterCreationData(
                _counterName,
                _counterHelp,
                _pcType);

            counterData.Add(counterCreationData);
        }