diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-04-11 14:44:47 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-04-11 14:44:47 +0700 |
commit | fd335142a7a492509dda827ee2b6507a651560b8 (patch) | |
tree | 4b8895243d11a29e50ffa3c869ad1507c7358cf0 /crypto/src/util/io/PushbackStream.cs | |
parent | X509: Signature checks that return bool (diff) | |
download | BouncyCastle.NET-ed25519-fd335142a7a492509dda827ee2b6507a651560b8.tar.xz |
Platform guards for Stream code
Diffstat (limited to 'crypto/src/util/io/PushbackStream.cs')
-rw-r--r-- | crypto/src/util/io/PushbackStream.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/src/util/io/PushbackStream.cs b/crypto/src/util/io/PushbackStream.cs index be6b26d4c..452019805 100644 --- a/crypto/src/util/io/PushbackStream.cs +++ b/crypto/src/util/io/PushbackStream.cs @@ -1,7 +1,9 @@ using System; using System.IO; using System.Threading; +#if NETCOREAPP1_0_OR_GREATER || NET45_OR_GREATER || NETSTANDARD1_0_OR_GREATER using System.Threading.Tasks; +#endif namespace Org.BouncyCastle.Utilities.IO { @@ -28,6 +30,7 @@ namespace Org.BouncyCastle.Utilities.IO } #endif +#if NETCOREAPP1_0_OR_GREATER || NET45_OR_GREATER || NETSTANDARD1_0_OR_GREATER public override async Task CopyToAsync(Stream destination, int bufferSize, CancellationToken cancellationToken) { if (m_buf != -1) @@ -39,6 +42,7 @@ namespace Org.BouncyCastle.Utilities.IO await Streams.CopyToAsync(s, destination, bufferSize, cancellationToken); } +#endif public override int Read(byte[] buffer, int offset, int count) { |