コード例 #1
0
ファイル: ClientSendToServer.cs プロジェクト: wizir/Gold-Chat
 protected virtual void OnSendExcep(string message)
 {
     SendException?.Invoke(this, new ClientEventArgs()
     {
         sendExcepMessage = message
     });
 }
コード例 #2
0
 /* ============================================================================== Error handling */
 private void OnSendException(IDistributedMessage message, Exception exception)
 {
     SendException?.Invoke(this, new ExceptionEventArgs(exception, message));
 }
コード例 #3
0
ファイル: ClusterChannel.cs プロジェクト: y1027/sensenet
 /* ============================================================================== Error handling */
 protected virtual void OnSendException(ClusterMessage message, Exception exception)
 {
     SendException?.Invoke(this, new ExceptionEventArgs(exception, message));
 }