System.IO.Compression.DeflateStream.ReadAsync C# (CSharp) Method

ReadAsync() public method

public ReadAsync ( byte array, int offset, int count, System cancellationToken ) : System.Threading.Tasks.Task
array byte
offset int
count int
cancellationToken System
return System.Threading.Tasks.Task
        public override System.Threading.Tasks.Task<int> ReadAsync(byte[] array, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
        public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }

Same methods

DeflateStream::ReadAsync ( byte array, int offset, int count, CancellationToken cancellationToken ) : Task

Usage Example

Example #1
0
 public override Task <int> ReadAsync(Byte[] array, int offset, int count, CancellationToken cancellationToken)
 {
     CheckDeflateStream();
     return(_deflateStream.ReadAsync(array, offset, count, cancellationToken));
 }
All Usage Examples Of System.IO.Compression.DeflateStream::ReadAsync