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

◆ Get() [2/3]

override string System.Net.Mime.HeaderCollection.Get ( string name)
inline

Definition at line 27 of file HeaderCollection.cs.

28 {
29 if (name == null)
30 {
31 throw new ArgumentNullException("name");
32 }
33 if (name.Length == 0)
34 {
35 throw new ArgumentException(System.SR.Format(System.SR.net_emptystringcall, "name"), "name");
36 }
37 return base.Get(name);
38 }
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.