Owin.RequestWriter.BeginReadBody C# (CSharp) Method

BeginReadBody() public method

public BeginReadBody ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult
buffer byte
offset int
count int
callback AsyncCallback
state object
return IAsyncResult
        public override IAsyncResult BeginReadBody(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
        {
            return ActuallyReadTheBody.BeginInvoke(buffer, offset, count, callback, state);
        }