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);
		}