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

BeginWrite() public méthode

public BeginWrite ( 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 BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
        {
            Write(buffer, offset, count);
            return new LazyAsyncResult(null, state, callback, null);
        }
        //