public virtual void startRecv()
        {
            AsyncReceiveMethod asyncReceiveMethod = new AsyncReceiveMethod(this._asyncReceive);

            asyncReceiveMethod.BeginInvoke(new AsyncCallback(_onRecv), asyncReceiveMethod);
        }
        public void startRecv()
        {
            var v = new AsyncReceiveMethod(this._asyncReceive);

            v.BeginInvoke(new AsyncCallback(_onRecv), null);
        }
 public void startRecv()
 {
     var v = new AsyncReceiveMethod(this._asyncReceive);
     v.BeginInvoke(new AsyncCallback(_onRecv), null);
 }