CounterCreationData | serializable |
System.Diagnostics (system.dll) | class |
This class is used to specify a type, name,
and help string for a custom
counter.
public class CounterCreationData {
// Public Constructors
public CounterCreationData( );
public CounterCreationData(string counterName, string counterHelp,
PerformanceCounterType counterType);
// Public Instance Properties
public string CounterHelp{set; get; }
public string CounterName{set; get; }
public PerformanceCounterType CounterType{set; get; }
}
Returned By
CounterCreationDataCollection.this
Passed To
CounterCreationDataCollection.{Add( ),
AddRange( ), Contains( ),
CopyTo( ), CounterCreationDataCollection(
), IndexOf( ), Insert(
), Remove( ), this}
|