Imported Upstream version 5.10.0.47

Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-01-24 17:04:36 +00:00
parent 88ff76fe28
commit e46a49ecf1
5927 changed files with 226314 additions and 129848 deletions

View File

@ -49,6 +49,7 @@ using System.Security.Cryptography.X509Certificates;
using System.Security.Permissions;
using System.Security.Principal;
using System.Security.Cryptography;
using System.Threading;
using System.Threading.Tasks;
using MNS = Mono.Net.Security;
@ -335,6 +336,11 @@ namespace System.Net.Security
throw new NotSupportedException (SR.GetString (SR.net_noseek));
}
public override Task FlushAsync (CancellationToken cancellationToken)
{
return InnerStream.FlushAsync (cancellationToken);
}
public override void Flush ()
{
InnerStream.Flush ();