Click or drag to resize
MimeKit

HeaderListInsert(Int32, String, Encoding, String) Method

Insert a header with the specified field and value at the given index.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public void Insert(
	int index,
	string field,
	Encoding encoding,
	string value
)

Parameters

index  Int32
The index to insert the header.
field  String
The name of the header field.
encoding  Encoding
The character encoding to use for the value.
value  String
The header value.
Exceptions
ExceptionCondition
ArgumentNullException

field is null.

-or-

encoding is null.

-or-

value is null.

ArgumentException The field contains illegal characters.
ArgumentOutOfRangeExceptionindex is out of range.
Remarks
Inserts the header at the specified index in the list.
See Also