예제 #1
0
 protected static void AfterRegisterParticipantHandler(RegistrationEventArgs e)
 {
     if (AfterRegisterParticipant != null)
     {
         AfterRegisterParticipant(new object(), e);
     }
 }
예제 #2
0
 protected static void AfterRegisterParticipantHandler(RegistrationEventArgs e)
 {
     if (AfterRegisterParticipant != null)
         AfterRegisterParticipant(new object(), e);
 }
예제 #3
0
 protected static void BeforeRegisterParticipantHandler(RegistrationEventArgs e)
 {
     if (BeforeRegisterParticipant != null)
         BeforeRegisterParticipant(new object(), e);
 }