Esempio n. 1
0
 private void receiveRemoteHookingException(RemoteHookingException ex)
 {
     if (_receiveReportException != null)
     {
         lock (sync_object)
         { _receiveReportException(ex); }
     }
 }
Esempio n. 2
0
 public void receiveRemoteHookingException(RemoteHookingException ex)
 {
     tur.receiveRemoteHookingException(ex);
 }
Esempio n. 3
0
 /// <summary>
 ///  Uses separate synchronous channel for sending exceptions back to the
 /// host installed this hook
 /// </summary>
 /// <param name="ex"></param>
 public void sendException(RemoteHookingException ex)
 {
     remote_receiver.receiveRemoteHookingException(ex);
 }
 public void receiveRemoteHookingException(RemoteHookingException ex)
 {
     communication_point.receiveRemoteHookingException(ex);
 }