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

◆ IsLWS()

static bool System.UriHelper.IsLWS ( char ch)
inlinestaticpackage

Definition at line 444 of file UriHelper.cs.

445 {
446 if (ch <= ' ')
447 {
448 if (ch != ' ' && ch != '\n' && ch != '\r')
449 {
450 return ch == '\t';
451 }
452 return true;
453 }
454 return false;
455 }

References System.ch.

Referenced by System.Uri.CreateUriInfo(), System.Uri.GetLengthWithoutTrailingSpaces(), System.Uri.ParseSchemeCheckImplicitFile(), System.Uri.PrivateParseMinimal(), and System.Uri.ResolveHelper().