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

◆ Add() [2/3]

void System.Net.Http.MultipartFormDataContent.Add ( HttpContent content,
string name )
inline

Definition at line 33 of file MultipartFormDataContent.cs.

34 {
35 if (content == null)
36 {
37 throw new ArgumentNullException("content");
38 }
39 if (string.IsNullOrWhiteSpace(name))
40 {
42 }
43 AddInternal(content, name, null);
44 }
void AddInternal(HttpContent content, string name, string fileName)
static string net_http_argument_empty_string
Definition SR.cs:52
Definition SR.cs:7

References System.Net.Http.MultipartFormDataContent.AddInternal(), and System.SR.net_http_argument_empty_string.