@@ -39,12 +39,17 @@ protected override void Dispose(bool disposing) { }
3939 public override int EndRead ( System . IAsyncResult asyncResult ) { throw null ; }
4040 public override void EndWrite ( System . IAsyncResult asyncResult ) { }
4141 public override void Flush ( ) { }
42+ public override System . Threading . Tasks . Task FlushAsync ( System . Threading . CancellationToken cancellationToken ) { throw null ; }
4243 public override int Read ( byte [ ] buffer , int offset , int count ) { throw null ; }
44+ public override int Read ( System . Span < byte > buffer ) { throw null ; }
4345 public override System . Threading . Tasks . Task < int > ReadAsync ( byte [ ] buffer , int offset , int count , System . Threading . CancellationToken cancellationToken ) { throw null ; }
46+ public override System . Threading . Tasks . ValueTask < int > ReadAsync ( System . Memory < byte > buffer , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
4447 public override long Seek ( long offset , System . IO . SeekOrigin origin ) { throw null ; }
4548 public override void SetLength ( long value ) { }
4649 public override void Write ( byte [ ] buffer , int offset , int count ) { }
50+ public override void Write ( System . ReadOnlySpan < byte > buffer ) { }
4751 public override System . Threading . Tasks . Task WriteAsync ( byte [ ] buffer , int offset , int count , System . Threading . CancellationToken cancellationToken ) { throw null ; }
52+ public override System . Threading . Tasks . ValueTask WriteAsync ( System . ReadOnlyMemory < byte > buffer , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
4853 }
4954 public enum CompressionLevel
5055 {
@@ -71,17 +76,25 @@ public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionM
7176 public override long Position { get { throw null ; } set { } }
7277 public override System . IAsyncResult BeginRead ( byte [ ] buffer , int offset , int count , System . AsyncCallback asyncCallback , object asyncState ) { throw null ; }
7378 public override System . IAsyncResult BeginWrite ( byte [ ] array , int offset , int count , System . AsyncCallback asyncCallback , object asyncState ) { throw null ; }
79+ public override void CopyTo ( System . IO . Stream destination , int bufferSize ) { }
80+ public override System . Threading . Tasks . Task CopyToAsync ( System . IO . Stream destination , int bufferSize , System . Threading . CancellationToken cancellationToken ) { throw null ; }
7481 protected override void Dispose ( bool disposing ) { }
7582 public override System . Threading . Tasks . ValueTask DisposeAsync ( ) { throw null ; }
7683 public override int EndRead ( System . IAsyncResult asyncResult ) { throw null ; }
7784 public override void EndWrite ( System . IAsyncResult asyncResult ) { }
7885 public override void Flush ( ) { }
86+ public override System . Threading . Tasks . Task FlushAsync ( System . Threading . CancellationToken cancellationToken ) { throw null ; }
7987 public override int Read ( byte [ ] array , int offset , int count ) { throw null ; }
88+ public override int Read ( System . Span < byte > buffer ) { throw null ; }
8089 public override System . Threading . Tasks . Task < int > ReadAsync ( byte [ ] array , int offset , int count , System . Threading . CancellationToken cancellationToken ) { throw null ; }
90+ public override System . Threading . Tasks . ValueTask < int > ReadAsync ( System . Memory < byte > buffer , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
91+ public override int ReadByte ( ) { throw null ; }
8192 public override long Seek ( long offset , System . IO . SeekOrigin origin ) { throw null ; }
8293 public override void SetLength ( long value ) { }
8394 public override void Write ( byte [ ] array , int offset , int count ) { }
95+ public override void Write ( System . ReadOnlySpan < byte > buffer ) { }
8496 public override System . Threading . Tasks . Task WriteAsync ( byte [ ] array , int offset , int count , System . Threading . CancellationToken cancellationToken ) { throw null ; }
97+ public override System . Threading . Tasks . ValueTask WriteAsync ( System . ReadOnlyMemory < byte > buffer , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
8598 }
8699 public partial class GZipStream : System . IO . Stream
87100 {
@@ -97,17 +110,25 @@ public GZipStream(System.IO.Stream stream, System.IO.Compression.CompressionMode
97110 public override long Position { get { throw null ; } set { } }
98111 public override System . IAsyncResult BeginRead ( byte [ ] array , int offset , int count , System . AsyncCallback asyncCallback , object asyncState ) { throw null ; }
99112 public override System . IAsyncResult BeginWrite ( byte [ ] array , int offset , int count , System . AsyncCallback asyncCallback , object asyncState ) { throw null ; }
113+ public override void CopyTo ( System . IO . Stream destination , int bufferSize ) { }
114+ public override System . Threading . Tasks . Task CopyToAsync ( System . IO . Stream destination , int bufferSize , System . Threading . CancellationToken cancellationToken ) { throw null ; }
100115 protected override void Dispose ( bool disposing ) { }
101116 public override System . Threading . Tasks . ValueTask DisposeAsync ( ) { throw null ; }
102117 public override int EndRead ( System . IAsyncResult asyncResult ) { throw null ; }
103118 public override void EndWrite ( System . IAsyncResult asyncResult ) { }
104119 public override void Flush ( ) { }
120+ public override System . Threading . Tasks . Task FlushAsync ( System . Threading . CancellationToken cancellationToken ) { throw null ; }
105121 public override int Read ( byte [ ] array , int offset , int count ) { throw null ; }
122+ public override int Read ( System . Span < byte > buffer ) { throw null ; }
106123 public override System . Threading . Tasks . Task < int > ReadAsync ( byte [ ] array , int offset , int count , System . Threading . CancellationToken cancellationToken ) { throw null ; }
124+ public override System . Threading . Tasks . ValueTask < int > ReadAsync ( System . Memory < byte > buffer , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
125+ public override int ReadByte ( ) { throw null ; }
107126 public override long Seek ( long offset , System . IO . SeekOrigin origin ) { throw null ; }
108127 public override void SetLength ( long value ) { }
109128 public override void Write ( byte [ ] array , int offset , int count ) { }
129+ public override void Write ( System . ReadOnlySpan < byte > buffer ) { }
110130 public override System . Threading . Tasks . Task WriteAsync ( byte [ ] array , int offset , int count , System . Threading . CancellationToken cancellationToken ) { throw null ; }
131+ public override System . Threading . Tasks . ValueTask WriteAsync ( System . ReadOnlyMemory < byte > buffer , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
111132 }
112133 public partial class ZipArchive : System . IDisposable
113134 {
0 commit comments