Click or drag to resize
MimeKit

InternetAddressListInsert Method

Insert an address at the specified index.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public void Insert(
	int index,
	InternetAddress address
)

Parameters

index  Int32
The index to insert the address.
address  InternetAddress
The address.

Implements

IListTInsert(Int32, T)
Exceptions
ExceptionCondition
ArgumentNullExceptionaddress is null.
ArgumentOutOfRangeExceptionindex is out of range.
Remarks
Inserts the address at the specified index in the list.
See Also