Click or drag to resize
MimeKit

ISmtpClientExpand Method

Expand a mailing address alias.

Namespace: MailKit.Net.Smtp
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
InternetAddressList Expand(
	string alias,
	CancellationToken cancellationToken = default
)

Parameters

alias  String
The mailing address alias.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

InternetAddressList
The expanded list of mailbox addresses.
Exceptions
ExceptionCondition
ArgumentNullExceptionalias is null.
ArgumentExceptionalias is an empty string.
ObjectDisposedException The SmtpClient has been disposed.
ServiceNotConnectedException The SmtpClient is not connected.
ServiceNotAuthenticatedException Authentication is required before verifying the existence of an address.
OperationCanceledException The operation has been canceled.
IOException An I/O error occurred.
SmtpCommandException The SMTP command failed.
SmtpProtocolException An SMTP protocol exception occurred.
Remarks
Expands a mailing address alias.
See Also