MailKit.Net.Imap.ImapCommand.IsQuotedSafe C# (CSharp) Метод

IsQuotedSafe() приватный Метод

private IsQuotedSafe ( char c ) : bool
c char
Результат bool
		bool IsQuotedSafe (char c)
		{
			return (c < 128 || Engine.UTF8Enabled) && !char.IsControl (c);
		}