Merge pull request #5327 from marek-safar/corefx-bump
[mono.git] / mcs / class / System / System.IO.Compression / DeflateStream.cs
index 8249d786c2e1a5d68f72e0981878d3c0aec30e80..354a16e39e39ce67361fbd28fbd1e0701cb88e0a 100644 (file)
@@ -130,6 +130,11 @@ namespace System.IO.Compression
                        }
                }
 
+               internal int ReadCore (Span<byte> destination)
+               {
+                       throw new NotImplementedException ();
+               }
+
                public override int Read (byte[] array, int offset, int count)
                {
                        if (disposed)
@@ -160,6 +165,11 @@ namespace System.IO.Compression
                        }
                }
 
+               internal void WriteCore (ReadOnlySpan<byte> source)
+               {
+                       throw new NotImplementedException ();
+               }
+
                public override void Write (byte[] array, int offset, int count)
                {
                        if (disposed)