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-10-06 13:07:58 +0300
committerGitHub <noreply@github.com>2017-10-06 13:07:58 +0300
commitf0ce7bc289794b4f022f2b5939e45e2faf56ac87 (patch)
tree1fe70c799fd02a741629b7213f73d33fd9e1d0bd /mcs/class/System
parent410bb8a57e23a901ea47d8a74f88a20972de423d (diff)
parentf165a0dc3fbaff879171de1b31d9fc25d3008c3c (diff)
Merge pull request #5327 from marek-safar/corefx-bump
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)