CK.Monitoring.GZipStreamReader.BeginRead C# (CSharp) Method

BeginRead() public method

public BeginRead ( byte array, int offset, int count, AsyncCallback asyncCallback, object asyncState ) : IAsyncResult
array byte
offset int
count int
asyncCallback AsyncCallback
asyncState object
return IAsyncResult
        public override IAsyncResult BeginRead( byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState )
        {
            return _stream.BeginRead( array, offset, count, asyncCallback, asyncState );
        }