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

◆ MaxRequestContentBufferSize

long System.Net.Http.HttpClientHandler.MaxRequestContentBufferSize
getset

Definition at line 198 of file HttpClientHandler.cs.

199 {
200 get
201 {
202 return 0L;
203 }
204 set
205 {
206 if (value < 0)
207 {
208 throw new ArgumentOutOfRangeException("value");
209 }
210 if (value > int.MaxValue)
211 {
212 throw new ArgumentOutOfRangeException("value", value, System.SR.Format(CultureInfo.InvariantCulture, System.SR.net_http_content_buffersize_limit, int.MaxValue));
213 }
215 }
216 }
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