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:
authorMartin Baulig <mabaul@microsoft.com>2017-09-14 20:17:19 +0300
committerGitHub <noreply@github.com>2017-09-14 20:17:19 +0300
commit56c2802ff9d1eec9ac6ab090100bb9cceccc83fb (patch)
tree4bc38139859054c03d4ebe14c17635edde9e8f65 /mcs/class/Mono.Security/Mono.Security.Interface/IMonoSslStream.cs
parent002fcd5835bf0171bbc4d938d9114de4169e9ae1 (diff)
[System]: SslStream.Flush() now flushes the underlying stream. Bug #57528. (#5569)
* Mono.Security.Interface.IMonoSslStream: removed Flush(). * Mono.Net.Security.MobileAuthenticatedStream: Flush() now calls `InnerStream.Flush ()'. * System.Net.Security.SslStream: Flush() now calls `InnerStream.Flush ()'. * System.Net.Security.SslStream: fix `CanRead`, `CanWrite` and `CanTimeout` logic.
Diffstat (limited to 'mcs/class/Mono.Security/Mono.Security.Interface/IMonoSslStream.cs')
-rw-r--r--mcs/class/Mono.Security/Mono.Security.Interface/IMonoSslStream.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/mcs/class/Mono.Security/Mono.Security.Interface/IMonoSslStream.cs b/mcs/class/Mono.Security/Mono.Security.Interface/IMonoSslStream.cs
index 0b64495fc5f..131ebab00e6 100644
--- a/mcs/class/Mono.Security/Mono.Security.Interface/IMonoSslStream.cs
+++ b/mcs/class/Mono.Security/Mono.Security.Interface/IMonoSslStream.cs
@@ -71,8 +71,6 @@ namespace Mono.Security.Interface
Task AuthenticateAsServerAsync (X509Certificate serverCertificate, bool clientCertificateRequired, SSA.SslProtocols enabledSslProtocols, bool checkCertificateRevocation);
- void Flush ();
-
int Read (byte[] buffer, int offset, int count);
void Write (byte[] buffer);