/// <summary>
 /// Creates the EventHandlerFactory.
 /// </summary>
 /// <param Name="Name">Name of the Factory. Is used as naming component of the event handlers to create.</param>
 public EventHandlerFactory(string Name)
 {
     helperName = Name;
     emitter    = new EventHandlerTypeEmitter(Name);
 }
 /// <summary>
 /// Creates the CommonEventHandler.
 /// </summary>
 /// <param name="Name">Name of the Factory. Is used as naming component of the event handlers to create.</param>
 public CommonEventHandler(string Name)
 {
     helperName = Name;
     emitter = new EventHandlerTypeEmitter(Name);
 }
Exemple #3
0
 /// <summary>
 /// Creates the EventHandlerFactory.
 /// </summary>
 /// <param Name="Name">Name of the Factory. Is used as naming component of the event handlers to create.</param>
 public EventHandlerFactory(string Name)
 {
     helperName = Name;
     emitter = new EventHandlerTypeEmitter(Name);
 }
 /// <summary>
 /// Creates the CommonEventHandler.
 /// </summary>
 /// <param name="Name">Name of the Factory. Is used as naming component of the event handlers to create.</param>
 public CommonEventHandler(string Name)
 {
     helperName = Name;
     emitter    = new EventHandlerTypeEmitter(Name);
 }