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

◆ SendAsync() [2/2]

void System.Net.Mail.SmtpClient.SendAsync ( string from,
string recipients,
string? subject,
string? body,
object? userToken )
inline

Definition at line 533 of file SmtpClient.cs.

534 {
535 if (_disposed)
536 {
537 throw new ObjectDisposedException(GetType().FullName);
538 }
539 SendAsync(new MailMessage(from, recipients, subject, body), userToken);
540 }
void SendAsync(string from, string recipients, string? subject, string? body, object? userToken)

References System.Net.Mail.SmtpClient._disposed, System.FullName, and System.Net.Mail.SmtpClient.SendAsync().

Referenced by System.Net.Mail.SmtpClient.SendAsync(), and System.Net.Mail.SmtpClient.SendMailAsync().