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

◆ IsFWSAt()

static bool System.Net.Mime.MailBnfHelper.IsFWSAt ( string data,
int index )
inlinestaticpackage

Definition at line 437 of file MailBnfHelper.cs.

438 {
439 if (data[index] == '\r' && index + 2 < data.Length && data[index + 1] == '\n')
440 {
441 if (data[index + 2] != ' ')
442 {
443 return data[index + 2] == '\t';
444 }
445 return true;
446 }
447 return false;
448 }

References System.index.

Referenced by System.Net.Mime.MailBnfHelper.GetTokenOrQuotedString(), and System.Net.Mime.BaseWriter.WriteAndFold().