Exemplo n.º 1
0
 private void ServerOnErrorOccurred(object sender, ErrorOccurredEventHandlerArgs args)
 {
     rtbLogs.Text += $"{DateTime.Now.ToString()}: Error has occured: {args.ErrorMessage}";
 }
Exemplo n.º 2
0
 private void ClientOnErrorOccurred(object sender, ErrorOccurredEventHandlerArgs args)
 {
     MessageBox.Show(args.ErrorMessage, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
 }