System.Net.Cache.CombinedReadStream.InnerAsyncResult.InnerAsyncResult C# (CSharp) Method

InnerAsyncResult() public method

public InnerAsyncResult ( object userState, AsyncCallback userCallback, byte buffer, int offset, int count ) : System
userState object
userCallback AsyncCallback
buffer byte
offset int
count int
return System
            public InnerAsyncResult(object userState, AsyncCallback userCallback, byte[] buffer, int offset, int count)
            :base (null, userState, userCallback) {

                Buffer = buffer;
                Offset = offset;
                Count  = count;
            }
CombinedReadStream.InnerAsyncResult