SendMailJobCollectionRemoveAt Method
Removes the job with the specified index from the collection.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public void RemoveAt(
	int index
)

Parameters

index
Type: SystemInt32
The zero-based index of SendMailJob to be removed from the collection.
Exceptions
ExceptionCondition
MailBeeInvalidStateExceptionThe collection is read-only.
Remarks

JobsRunning collection is read-only. Only MailBee itself can modify this collection. Other collections (JobsPending, JobsSuccessful, JobsFailed) are editable.

Except for read-only check, this method simply calls RemoveAt(Int32) and thus may also throw exceptions specific to that method.

See Also