Amib.Threading.Internal.STPPerformanceCounter.AddCounterToCollection C# (CSharp) Method

AddCounterToCollection() public method

public AddCounterToCollection ( System.Diagnostics.CounterCreationDataCollection counterData ) : void
counterData System.Diagnostics.CounterCreationDataCollection
return void
        public void AddCounterToCollection(CounterCreationDataCollection counterData)
        {
            var counterCreationData = new CounterCreationData(
                _counterName,
                _counterHelp,
                _pcType);

            counterData.Add(counterCreationData);
        }