示例#1
0
        public IAsyncResult BeginGetWithCallback(byte[] key, AsyncCallback acb, object state)
        {
            BrunetDhtGetOp op = new BrunetDhtGetOp(this._dht.Get);
            IAsyncResult   ar = op.BeginInvoke(key, acb, state);

            return(ar);
        }
 public IAsyncResult BeginGetWithCallback(byte[] key, AsyncCallback acb, object state)
 {
     BrunetDhtGetOp op = new BrunetDhtGetOp(this._dht.Get);
       IAsyncResult ar = op.BeginInvoke(key, acb, state);
       return ar;
 }