Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2017-08-07 17:39:39 +0300
committerMarek Safar <marek.safar@gmail.com>2017-10-05 23:43:54 +0300
commit411a37af27905eaa44dac1a31f6387a11c0b0244 (patch)
tree91ae551aa6c377e83f0c3ba8cfe93201296cce0b /mcs/class/System
parent3e9d7d6e9cf8dc33eb29c497c350a1cd7df3a057 (diff)
Bump corefx
Diffstat (limited to 'mcs/class/System')
-rw-r--r--mcs/class/System/System.IO.Compression/DeflateStream.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/class/System/System.IO.Compression/DeflateStream.cs b/mcs/class/System/System.IO.Compression/DeflateStream.cs
index 8249d786c2e..354a16e39e3 100644
--- a/mcs/class/System/System.IO.Compression/DeflateStream.cs
+++ b/mcs/class/System/System.IO.Compression/DeflateStream.cs
@@ -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)