| HeaderCollectionAdd Method (String, String, Boolean) | 
            Adds a header to the collection.
            
 
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
 Syntax
Syntaxpublic bool Add(
	string name,
	string value,
	bool overwrite
)
Public Function Add ( 
	name As String,
	value As String,
	overwrite As Boolean
) As Boolean
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: 
Booleantrue if the header was successfully added; otherwise, 
false.
            
 Examples
ExamplesThis sample creates a new message and adds a header to this message.
            
using MailBee;
using MailBee.Mime;
MailMessage msg = new MailMessage();
msg.Headers.Add("MyHeader", "Some value for my own header", false);
Imports MailBee
Imports MailBee.Mime
Dim msg As New MailMessage
msg.Headers.Add("MyHeader", "Some value for my own header", False) See Also
See Also