public void SendAsync(CustomEventArgs _args) { sendArgs = _args; }
public void AcceptAsync(CustomEventArgs _args) { acceptAgrs = _args; }
public void ReceiveAsync(CustomEventArgs _args) { receiveArgs = _args; }
void OnSendAsync(object _obj, CustomEventArgs _args) { Console.WriteLine(" > OnSendAsync:" + _args.msg); }