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

◆ BeginAuthenticateAsServer() [3/4]

virtual IAsyncResult System.Net.Security.NegotiateStream.BeginAuthenticateAsServer ( NetworkCredential credential,
ExtendedProtectionPolicy? policy,
ProtectionLevel requiredProtectionLevel,
TokenImpersonationLevel requiredImpersonationLevel,
AsyncCallback? asyncCallback,
object? asyncState )
inlinevirtual

Definition at line 361 of file NegotiateStream.cs.

362 {
363 return System.Threading.Tasks.TaskToApm.Begin(AuthenticateAsServerAsync(credential, policy, requiredProtectionLevel, requiredImpersonationLevel), asyncCallback, asyncState);
364 }
static IAsyncResult Begin(Task task, AsyncCallback callback, object state)
Definition TaskToApm.cs:43

References System.Net.Security.NegotiateStream.AuthenticateAsServerAsync(), and System.Threading.Tasks.TaskToApm.Begin().