CopyToAsync() public method

public CopyToAsync ( Stream destination, int bufferSize, CancellationToken cancellationToken ) : System.Threading.Task
destination Stream
bufferSize int
cancellationToken System.Threading.CancellationToken
return System.Threading.Task
Exemplo n.º 1
0
 public override Task CopyToAsync(Stream destination, int bufferSize, CancellationToken cancellationToken)
 {
     CheckDeflateStream();
     return(_deflateStream.CopyToAsync(destination, bufferSize, cancellationToken));
 }