Beispiel #1
0
 public void SendAsync(CustomEventArgs _args)
 {
     sendArgs = _args;
 }
Beispiel #2
0
 public void AcceptAsync(CustomEventArgs _args)
 {
     acceptArgs = _args;
 }
Beispiel #3
0
 public void ReceiveAsync(CustomEventArgs _args)
 {
     receiveArgs = _args;
 }
Beispiel #4
0
 void OnSendCallback(object _obj, CustomEventArgs _args)
 {
     Console.WriteLine(_args.msg + " > ");
 }