FileFind.Meshwork.FileTransfer.BitTorrent.TorrentConnection.BeginReceive C# (CSharp) 메소드

BeginReceive() 공개 메소드

public BeginReceive ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult
buffer byte
offset int
count int
callback AsyncCallback
state object
리턴 IAsyncResult
        public IAsyncResult BeginReceive(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
        {
            return transport.BeginReceive (buffer, offset, count, callback, state);
        }