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

◆ PositiveIntermediate

bool System.Net.ResponseDescription.PositiveIntermediate
getpackage

Definition at line 17 of file ResponseDescription.cs.

18 {
19 get
20 {
21 if (Status >= 100)
22 {
23 return Status <= 199;
24 }
25 return false;
26 }
27 }