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

BeginRead() public méthode

public BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, Object state ) : IAsyncResult
buffer byte
offset int
count int
callback AsyncCallback
state Object
Résultat IAsyncResult
        public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
        {
            int result = Read(buffer, offset, count);
            return new LazyAsyncResult(null, state, callback, result);
        }
        //