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

◆ MaxAutomaticRedirections

int System.Net.Http.SocketsHttpHandler.MaxAutomaticRedirections
getset

Definition at line 142 of file SocketsHttpHandler.cs.

143 {
144 get
145 {
147 }
148 set
149 {
150 if (value <= 0)
151 {
152 throw new ArgumentOutOfRangeException("value", value, System.SR.Format(System.SR.net_http_value_must_be_greater_than, 0));
153 }
155 _settings._maxAutomaticRedirections = value;
156 }
157 }
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