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

◆ Add() [1/2]

void System.Net.Mail.MailAddressCollection.Add ( string addresses)
inline

Definition at line 8 of file MailAddressCollection.cs.

9 {
10 if (addresses == null)
11 {
12 throw new ArgumentNullException("addresses");
13 }
14 if (addresses.Length == 0)
15 {
16 throw new ArgumentException(System.SR.Format(System.SR.net_emptystringcall, "addresses"), "addresses");
17 }
19 }
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string net_emptystringcall
Definition SR.cs:14
Definition SR.cs:7

References System.SR.Format(), System.SR.net_emptystringcall, and System.Net.Mail.MailAddressCollection.ParseValue().

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