Click or drag to resize
MimeKit

Parameter(String, String, String) Constructor

Initialize a new instance of the Parameter class.

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

Parameters

charset  String
The character encoding.
name  String
The parameter name.
value  String
The parameter value.
Exceptions
ExceptionCondition
ArgumentNullException

charset is null.

-or-

name is null.

-or-

value is null.

ArgumentExceptionname contains illegal characters.
NotSupportedExceptioncharset is not supported.
Remarks
Creates a new parameter with the specified name and value.
See Also