Exemple #1
0
 /// <summary>
 /// Removes an EventGenerator from the list of ActiveEventGenerators
 /// </summary>
 /// <param name="eventGenerator"></param>
 public void DeactivateEventGenerator(EventGenerator eventGenerator)
 {
     ActiveEventGenerators.Remove(eventGenerator);
 }
Exemple #2
0
 /// <summary>
 /// Adds an EventGenerator to the list of ActiveEventGenerators
 /// </summary>
 /// <param name="eventGenerator"></param>
 public void ActivateEventGenerator(EventGenerator eventGenerator)
 {
     ActiveEventGenerators.Add(eventGenerator);
 }