FileFind.Meshwork.FileTransfer.BitTorrent.TorrentConnection.BeginReceive C# (CSharp) Méthode

BeginReceive() public méthode

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