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

◆ BeginGetConnection()

IAsyncResult System.Net.Mail.SmtpConnection.BeginGetConnection ( System::Net::ContextAwareResult outerResult,
AsyncCallback callback,
object state,
string host,
int port )
inlinepackage

Definition at line 607 of file SmtpConnection.cs.

608 {
609 ConnectAndHandshakeAsyncResult connectAndHandshakeAsyncResult = new ConnectAndHandshakeAsyncResult(this, host, port, outerResult, callback, state);
610 connectAndHandshakeAsyncResult.GetConnection();
611 return connectAndHandshakeAsyncResult;
612 }

References System.Net.Mail.SmtpConnection.ConnectAndHandshakeAsyncResult.GetConnection(), and System.state.

Referenced by System.Net.Mail.SmtpTransport.BeginGetConnection().