Ejemplo n.º 1
0
 protected static void AfterRegisterParticipantHandler(RegistrationEventArgs e)
 {
     if (AfterRegisterParticipant != null)
     {
         AfterRegisterParticipant(new object(), e);
     }
 }
Ejemplo n.º 2
0
 protected static void AfterRegisterParticipantHandler(RegistrationEventArgs e)
 {
     if (AfterRegisterParticipant != null)
         AfterRegisterParticipant(new object(), e);
 }
Ejemplo n.º 3
0
 protected static void BeforeRegisterParticipantHandler(RegistrationEventArgs e)
 {
     if (BeforeRegisterParticipant != null)
         BeforeRegisterParticipant(new object(), e);
 }