Decodes Base64 and Quoted-Printable strings (RFC 2047).

Namespace: Limilabs.Mail.Headers
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
public static string Decode(
	string text
)
Visual Basic
Public Shared Function Decode ( _
	text As String _
) As String
Visual C++
public:
static String^ Decode(
	String^ text
)

Parameters

text
Type: System..::..String
"Tom and =?iso-8859-2?Q?Pawe=B3_Le=B6nikowski?= are..."

Return Value

"Tom and Paweł Leśnikowski are..."

Exceptions

ExceptionCondition
Limilabs.Mail..::..MailException The charset is not supported by the current regional options of the computer executing this method.

See Also