FileFind.Meshwork.FileTransfer.BitTorrent.TorrentConnection.BeginSend C# (CSharp) Method

BeginSend() public method

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