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

◆ MaxResponseContentBufferSize

long System.Net.Http.HttpClient.MaxResponseContentBufferSize
getset

Definition at line 117 of file HttpClient.cs.

118 {
119 get
120 {
122 }
123 set
124 {
125 if (value <= 0)
126 {
127 throw new ArgumentOutOfRangeException("value");
128 }
129 if (value > int.MaxValue)
130 {
131 throw new ArgumentOutOfRangeException("value", value, System.SR.Format(CultureInfo.InvariantCulture, System.SR.net_http_content_buffersize_limit, int.MaxValue));
132 }
135 }
136 }
static CultureInfo InvariantCulture
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string net_http_content_buffersize_limit
Definition SR.cs:84
Definition SR.cs:7