You've already forked linux-packaging-mono
Imported Upstream version 5.10.0.47
Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
This commit is contained in:
parent
88ff76fe28
commit
e46a49ecf1
@ -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 ();
|
||||
|
Reference in New Issue
Block a user