Example #1
0
 public void Insert(int index, System.Diagnostics.CounterCreationData value)
 {
 }
Example #2
0
 public int IndexOf(System.Diagnostics.CounterCreationData value)
 {
     throw null;
 }
Example #3
0
 public bool Contains(System.Diagnostics.CounterCreationData value)
 {
     throw null;
 }
Example #4
0
 public virtual void Remove(System.Diagnostics.CounterCreationData value)
 {
 }
 //------------------------------------------------------------------------------
 //
 // Method: CounterCreationData (constructor)
 //
 //------------------------------------------------------------------------------
 /// <summary>
 /// Initialises a new instance of the CounterCreationData.PerformanceCounter class.
 /// </summary>
 /// <param name="counterName">The name of the counter, which must be unique within its category.</param>
 /// <param name="counterHelp">The text that describes the counter's behavior.</param>
 /// <param name="counterType">A PerformanceCounterType that identifies the counter's behavior.</param>
 public CounterCreationData(string counterName, string counterHelp, System.Diagnostics.PerformanceCounterType counterType)
 {
     counterCreationData = new System.Diagnostics.CounterCreationData(counterName, counterHelp, counterType);
 }
 //------------------------------------------------------------------------------
 //
 // Method: CounterCreationData (constructor)
 //
 //------------------------------------------------------------------------------
 /// <summary>
 /// Initialises a new instance of the CounterCreationData.PerformanceCounter class.
 /// </summary>
 /// <param name="counterName">The name of the counter, which must be unique within its category.</param>
 /// <param name="counterHelp">The text that describes the counter's behavior.</param>
 /// <param name="counterType">A PerformanceCounterType that identifies the counter's behavior.</param>
 public CounterCreationData(string counterName, string counterHelp, System.Diagnostics.PerformanceCounterType counterType)
 {
     counterCreationData = new System.Diagnostics.CounterCreationData(counterName, counterHelp, counterType);
 }