System.Net.WebClient.WebClientWriteStream.BeginRead C# (CSharp) Méthode

BeginRead() private méthode

private BeginRead ( byte buffer, int offset, int size, AsyncCallback callback, object state ) : IAsyncResult
buffer byte
offset int
size int
callback AsyncCallback
state object
Résultat IAsyncResult
            public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, object state) {
                return m_stream.BeginRead(buffer, offset, size, callback, state);
            }