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

◆ MaximumAutomaticRedirections

int System.Net.HttpWebRequest.MaximumAutomaticRedirections
getset

Definition at line 224 of file HttpWebRequest.cs.

225 {
226 get
227 {
229 }
230 set
231 {
232 if (value <= 0)
233 {
234 throw new ArgumentException(System.SR.net_toosmall, "value");
235 }
237 }
238 }
static string net_toosmall
Definition SR.cs:14
Definition SR.cs:7