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

◆ MaxResponseHeadersLength

int System.Net.Http.SocketsHttpHandler.MaxResponseHeadersLength
getset

Definition at line 210 of file SocketsHttpHandler.cs.

211 {
212 get
213 {
215 }
216 set
217 {
218 if (value <= 0)
219 {
220 throw new ArgumentOutOfRangeException("value", value, System.SR.Format(System.SR.net_http_value_must_be_greater_than, 0));
221 }
223 _settings._maxResponseHeadersLength = value;
224 }
225 }
readonly HttpConnectionSettings _settings
static string net_http_value_must_be_greater_than
Definition SR.cs:88
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
Definition SR.cs:7