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