Add missing BrotliStream methods to ref file (#46726)
authorCarlos Sanchez <1175054+carlossanlop@users.noreply.github.com>
Fri, 8 Jan 2021 15:43:07 +0000 (07:43 -0800)
committerGitHub <noreply@github.com>
Fri, 8 Jan 2021 15:43:07 +0000 (10:43 -0500)
Co-authored-by: carlossanlop <carlossanlop@users.noreply.github.com>
src/libraries/System.IO.Compression.Brotli/ref/System.IO.Compression.Brotli.cs

index 3e0cbb5..f402036 100644 (file)
@@ -50,11 +50,13 @@ namespace System.IO.Compression
         public override int Read(System.Span<byte> buffer) { throw null; }
         public override System.Threading.Tasks.Task<int> ReadAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
         public override System.Threading.Tasks.ValueTask<int> ReadAsync(System.Memory<byte> buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
+        public override int ReadByte() { throw null; }
         public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
         public override void SetLength(long value) { }
         public override void Write(byte[] buffer, int offset, int count) { }
         public override void Write(System.ReadOnlySpan<byte> buffer) { }
         public override System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
         public override System.Threading.Tasks.ValueTask WriteAsync(System.ReadOnlyMemory<byte> buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
+        public override void WriteByte(byte value) { }
     }
 }