public void OnPopWithNullEvent(string soda, EventRaiser raiser)
 {
     raiser.Raise(null, this, soda);  // no event...
 }
 public void OnPopWithBadNumberOfArguments(string soda, EventRaiser raiser)
 {
     raiser.Raise(Pop, /*this,*/ soda);  // wrong number of args to the event
 }
 public IEventExceptionsCollector OnPop(string soda, EventRaiser raiser)
 {
     return(raiser.Raise(Pop, this, soda));
 }
Example #4
0
 public void OnPopWithNullEvent (string soda, EventRaiser raiser) 
 {
     raiser.Raise (null, this, soda); // no event...
 }
Example #5
0
 public void OnPopWithBadNumberOfArguments (string soda, EventRaiser raiser) 
 {
     raiser.Raise (Pop, /*this,*/ soda); // wrong number of args to the event
 }
Example #6
0
 public IEventExceptionsCollector OnPop (string soda, EventRaiser raiser) 
 {
     return raiser.Raise (Pop, this, soda);
 }