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

◆ Add() [3/3]

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

Definition at line 46 of file MultipartFormDataContent.cs.

47 {
48 if (content == null)
49 {
50 throw new ArgumentNullException("content");
51 }
52 if (string.IsNullOrWhiteSpace(name))
53 {
55 }
56 if (string.IsNullOrWhiteSpace(fileName))
57 {
59 }
60 AddInternal(content, name, fileName);
61 }
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.