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

◆ IsAllowedWhiteSpace()

static bool System.Net.Mime.MailBnfHelper.IsAllowedWhiteSpace ( char c)
inlinestaticpackage

Definition at line 416 of file MailBnfHelper.cs.

417 {
418 if (c != '\t' && c != ' ' && c != '\r')
419 {
420 return c == '\n';
421 }
422 return true;
423 }

Referenced by System.Net.Mail.MailAddressParser.TryParseLocalPart().