Click or drag to resize
MimeKit

MimeUtilsUnquote Method

Unquote the specified text.

Namespace: MimeKit.Utils
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public static string Unquote(
	string text,
	bool convertTabsToSpaces = false
)

Parameters

text  String
The text to unquote.
convertTabsToSpaces  Boolean  (Optional)
true if tab characters should be converted to a space; otherwise, false.

Return Value

String
The unquoted text.
Exceptions
ExceptionCondition
ArgumentNullExceptiontext is null.
Remarks
Unquotes the specified text, removing any escaped backslashes within.
See Also