MailKit.Net.Imap.ImapCommand.IsQuotedSafe C# (CSharp) Méthode

IsQuotedSafe() private méthode

private IsQuotedSafe ( char c ) : bool
c char
Résultat bool
		bool IsQuotedSafe (char c)
		{
			return (c < 128 || Engine.UTF8Enabled) && !char.IsControl (c);
		}