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

◆ IsUnicodeSupported()

bool System.Net.Mail.SmtpClient.IsUnicodeSupported ( )
inlineprivate

Definition at line 357 of file SmtpClient.cs.

358 {
359 if (DeliveryMethod == SmtpDeliveryMethod.Network)
360 {
362 {
363 return DeliveryFormat == SmtpDeliveryFormat.International;
364 }
365 return false;
366 }
367 return DeliveryFormat == SmtpDeliveryFormat.International;
368 }
SmtpDeliveryFormat DeliveryFormat
SmtpDeliveryMethod DeliveryMethod

References System.Net.Mail.SmtpClient.DeliveryFormat, System.Net.Mail.SmtpClient.DeliveryMethod, and System.Net.Mail.SmtpClient.ServerSupportsEai.

Referenced by System.Net.Mail.SmtpClient.ConnectCallback(), System.Net.Mail.SmtpClient.Send(), System.Net.Mail.SmtpClient.SendAsync(), and System.Net.Mail.SmtpClient.SendMailCallback().