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

◆ IsWhiteSpaceCharacter()

static bool System.Security.Cryptography.PemEncoding.IsWhiteSpaceCharacter ( char ch)
inlinestaticprivate

Definition at line 189 of file PemEncoding.cs.

190 {
191 if (ch != ' ' && ch != '\t' && ch != '\n')
192 {
193 return ch == '\r';
194 }
195 return true;
196 }

References System.ch.

Referenced by System.Security.Cryptography.PemEncoding.TryCountBase64(), and System.Security.Cryptography.PemEncoding.TryFind().