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