Click or drag to resize
MimeKit

Header(String, String, String) Constructor

Initialize a new instance of the Header class.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public Header(
	string charset,
	string field,
	string value
)

Parameters

charset  String
The charset that should be used to encode the header value.
field  String
The name of the header field.
value  String
The value of the header.
Exceptions
ExceptionCondition
ArgumentNullException

charset is null.

-or-

field is null.

-or-

value is null.

ArgumentException The field contains illegal characters.
NotSupportedExceptioncharset is not supported.
Remarks
Creates a new message or entity header for the specified field and value pair. The encoding is used to determine which charset to use when encoding the value according to the rules of rfc2047.
See Also