예제 #1
0
 /// <summary>
 /// Lanza el evento OnError cuando se recive el evento desde el controlador.
 /// </summary>
 private void SystemController_OnError(OTCInformationEventArgs args, Exception ex)
 {
     if (OnError != null)
     {
         OnError(args, ex);
     }
 }
예제 #2
0
 /// <summary>
 /// Método interno para lanzar el evento OnInformation.
 /// </summary>
 private void Object_OnInformation(OTCInformationEventArgs e)
 {
     if (OnInformation != null)
     {
         OnInformation(e);
     }
 }
예제 #3
0
 /// <summary>
 /// Lanza el evento OnInformation cuando se recive el evento desde el controlador.
 /// </summary>
 private void SystemController_OnInformation(OTCInformationEventArgs args)
 {
     if (OnInformation != null)
     {
         OnInformation(args);
     }
 }
예제 #4
0
 /// <summary>
 /// Método interno para lanzar el evento OnError.
 /// </summary>
 private void Object_OnError(OTCInformationEventArgs e, Exception error)
 {
     if (OnError != null)
     {
         OnError(e, error);
     }
 }