HeaderCollectionRemoveAt Method
Removes the header from the collection at the given zero-based index.

Namespace: MailBee.Mime
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 the message header in the collection.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThe specified index does not exist.
Examples
This sample loads the message from .EML file and removes the first header of the message.
// To use the code below, import MailBee namespaces at the top of your code.
using MailBee;
using MailBee.Mime;

// The actual code (put it into a method of your class)

// Load the message from file.
MailMessage msg = new MailMessage();
msg.LoadMessage(@"C:\Docs\TestMail.eml");

// When the first header exists...
if (msg.Headers.Count > 0)
{
    // Remove the first header.
    msg.Headers.RemoveAt(0);
}
See Also