Click or drag to resize
MimeKit

ITextPartGetText(String) Method

Get the decoded text content using the provided charset to override the charset specified in the Content-Type parameters.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.10.0
Syntax
C#
string GetText(
	string charset
)

Parameters

charset  String
The charset encoding to use.

Return Value

String
The decoded text.
Exceptions
ExceptionCondition
ArgumentNullExceptioncharset is .
NotSupportedException The charset is not supported.
ObjectDisposedException The ITextPart has been disposed.
Remarks
Uses the provided charset encoding to convert the raw text content into a unicode string, overriding any charset specified in the Content-Type header.
See Also