Beispiel #1
0
 protected virtual void OnSendExcep(string message)
 {
     SendException?.Invoke(this, new ClientEventArgs()
     {
         sendExcepMessage = message
     });
 }
Beispiel #2
0
 /* ============================================================================== Error handling */
 private void OnSendException(IDistributedMessage message, Exception exception)
 {
     SendException?.Invoke(this, new ExceptionEventArgs(exception, message));
 }
Beispiel #3
0
 /* ============================================================================== Error handling */
 protected virtual void OnSendException(ClusterMessage message, Exception exception)
 {
     SendException?.Invoke(this, new ExceptionEventArgs(exception, message));
 }