예제 #1
0
 private static void WcfClientService_CommunicationError(object sender, WcfClientServiceErrorEventArgs e)
 {
     OnWcfNotification(new NotificationEventArgs(e.Msg));
 }
예제 #2
0
 private static void SendWcfCommand_Error(object sender, WcfClientServiceErrorEventArgs e)
 {
     Log.Critical(e.Msg, e.Ex);
 }
예제 #3
0
 protected override void OnTimeoutError(WcfClientServiceErrorEventArgs e)
 {
     _writeLogMsgAction(e.Msg);
     base.OnTimeoutError(e);
 }
예제 #4
0
 protected virtual void OnError(WcfClientServiceErrorEventArgs e)
 {
     Error?.Invoke(this, e);
 }
예제 #5
0
 protected virtual void OnCommunicationError(WcfClientServiceErrorEventArgs e)
 {
     CommunicationError?.Invoke(this, e);
 }
예제 #6
0
 private static void WcfClientService_Error(object sender, WcfClientServiceErrorEventArgs e)
 {
     WriteMsg(e.Msg);
 }