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

◆ Remove() [1/2]

override void System.Net.Mime.HeaderCollection.Remove ( string name)
inline

Definition at line 14 of file HeaderCollection.cs.

15 {
16 if (name == null)
17 {
18 throw new ArgumentNullException("name");
19 }
20 if (name.Length == 0)
21 {
22 throw new ArgumentException(System.SR.Format(System.SR.net_emptystringcall, "name"), "name");
23 }
24 base.Remove(name);
25 }
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(), and System.SR.net_emptystringcall.

Referenced by System.Net.Mail.Message.PrepareEnvelopeHeaders().