System.Net.Cache.SingleItemRequestCache.ReadOnlyStream.BeginRead C# (CSharp) Метод

BeginRead() публичный Метод

public BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, Object state ) : IAsyncResult
buffer byte
offset int
count int
callback AsyncCallback
state Object
Результат IAsyncResult
            public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
            {
                int result = Read(buffer, offset, count);

                LazyAsyncResult ar = new LazyAsyncResult(null, state, callback);
                ar.InvokeCallback(result);
                return ar;
            }
            public override int EndRead(IAsyncResult asyncResult)