Click or drag to resize
MimeKit

Pop3ClientSetLanguageAsync Method

Asynchronously set the language used by the POP3 server for error messages.

Namespace: MailKit.Net.Pop3
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public Task SetLanguageAsync(
	string lang,
	CancellationToken cancellationToken = default
)

Parameters

lang  String
The language code.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

Task
An asynchronous task context.

Implements

IPop3ClientSetLanguageAsync(String, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullExceptionlang is null.
ArgumentExceptionlang is empty.
ObjectDisposedException The Pop3Client has been disposed.
ServiceNotConnectedException The Pop3Client is not connected.
OperationCanceledException The operation was canceled via the cancellation token.
NotSupportedException The POP3 server does not support the LANG extension.
IOException An I/O error occurred.
Pop3CommandException The POP3 command failed.
Pop3ProtocolException A POP3 protocol error occurred.
Remarks
If the POP3 server supports the LANG extension, it is possible to set the language used by the POP3 server for error messages.
See Also