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

◆ GetValues() [2/3]

override string[] System.Net.Mime.HeaderCollection.GetValues ( string name)
inline

Definition at line 40 of file HeaderCollection.cs.

41 {
42 if (name == null)
43 {
44 throw new ArgumentNullException("name");
45 }
46 if (name.Length == 0)
47 {
48 throw new ArgumentException(System.SR.Format(System.SR.net_emptystringcall, "name"), "name");
49 }
50 return base.GetValues(name);
51 }
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.EncodeHeaders().