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

◆ BeginAuthenticateAsClient() [2/2]

IAsyncResult System.Net.TlsStream.BeginAuthenticateAsClient ( AsyncCallback asyncCallback,
object state )
inline

Definition at line 29 of file TlsStream.cs.

30 {
31 return _sslStream.BeginAuthenticateAsClient(_host, _clientCertificates, (SslProtocols)ServicePointManager.SecurityProtocol, ServicePointManager.CheckCertificateRevocationList, asyncCallback, state);
32 }
virtual IAsyncResult BeginAuthenticateAsClient(string targetHost, AsyncCallback? asyncCallback, object? asyncState)
Definition SslStream.cs:414
readonly X509CertificateCollection _clientCertificates
Definition TlsStream.cs:14
readonly string _host
Definition TlsStream.cs:12
readonly SslStream _sslStream
Definition TlsStream.cs:10

References System.Net.TlsStream._clientCertificates, System.Net.TlsStream._host, System.Net.TlsStream._sslStream, System.Net.Security.SslStream.BeginAuthenticateAsClient(), System.Net.ServicePointManager.CheckCertificateRevocationList, System.Net.ServicePointManager.SecurityProtocol, and System.state.