MailKit.Net.Imap.ImapCommand.IsQuotedSafe C# (CSharp) Method

IsQuotedSafe() private method

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