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

◆ PermanentFailure

bool System.Net.ResponseDescription.PermanentFailure
getpackage

Definition at line 53 of file ResponseDescription.cs.

54 {
55 get
56 {
57 if (Status >= 500)
58 {
59 return Status <= 599;
60 }
61 return false;
62 }
63 }