Microsoft.AspNetCore.Buffering.BufferingWriteStream.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)
        {
            if (_isBuffering)
            {
                return _buffer.BeginWrite(buffer, offset, count, callback, state);
            }
            else
            {
                return _innerStream.BeginWrite(buffer, offset, count, callback, state);
            }
        }