ImapUtilsToUtf8QuotedString Method
Converts the specified string into the IMAP4 quoted and UTF-8 encoded string.

Namespace: MailBee.ImapMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public static string ToUtf8QuotedString(
	string s
)

Parameters

s
Type: SystemString
The string to be converted into the IMAP4 quoted and UTF-8 encoded string.

Return Value

Type: String
The IMAP4 quoted and UTF-8 encoded string.
Remarks
The method can be used to build "search by non-English text" expressions when using Search(Boolean, String, String) or BeginSearch(Boolean, String, String, AsyncCallback, Object) methods.
Note Note
With Gmail, use ToLiteral(String) method instead.
See Also