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

◆ CharIsSpaceOrTab()

static bool System.Net.Http.AuthenticationHelper.DigestResponse.CharIsSpaceOrTab ( char ch)
inlinestaticprivate

Definition at line 53 of file AuthenticationHelper.cs.

54 {
55 if (ch != ' ')
56 {
57 return ch == '\t';
58 }
59 return true;
60 }

References System.ch.

Referenced by System.Net.Http.AuthenticationHelper.DigestResponse.GetNextKey(), and System.Net.Http.AuthenticationHelper.DigestResponse.GetNextValue().