Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ BeginAuthenticateAsServer() [1/4]

IAsyncResult System.Net.Security.SslStream.BeginAuthenticateAsServer ( SslServerAuthenticationOptions sslServerAuthenticationOptions,
CancellationToken cancellationToken,
AsyncCallback asyncCallback,
object asyncState )
inlineprivate

Definition at line 470 of file SslStream.cs.

471 {
472 return System.Threading.Tasks.TaskToApm.Begin(AuthenticateAsServerApm(sslServerAuthenticationOptions, cancellationToken), asyncCallback, asyncState);
473 }
Task AuthenticateAsServerApm(SslServerAuthenticationOptions sslServerAuthenticationOptions, CancellationToken cancellationToken=default(CancellationToken))
Definition SslStream.cs:638
static IAsyncResult Begin(Task task, AsyncCallback callback, object state)
Definition TaskToApm.cs:43

References System.Net.Security.SslStream.AuthenticateAsServerApm(), System.Threading.Tasks.TaskToApm.Begin(), and System.cancellationToken.