HeaderCollectionAdd Method (String, String, Boolean)
Adds a header to the collection.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public bool Add(
	string name,
	string value,
	bool overwrite
)

Parameters

name
Type: SystemString
The name of the header.
value
Type: SystemString
The value of the header.
overwrite
Type: SystemBoolean
If true all found headers having the specified name are removed, while only one header will be inserted instead of them; otherwise, another header having the same name will be added.

Return Value

Type: Boolean
true if the header was successfully added; otherwise, false.
Examples
This sample creates a new message and adds a header to this message.
// To use the code below, import MailBee namespaces at the top of your code.
using MailBee;
using MailBee.Mime;

// Create a MailMessage object.
MailMessage msg = new MailMessage();

// Add a header.
msg.Headers.Add("MyHeader", "Some value for my own header", false);
See Also