Click or drag to resize
MimeKit

ParameterListAdd(String, String) Method

Add a parameter with the specified name and value.

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

Parameters

name  String
The parameter name.
value  String
The parameter value.
Exceptions
ExceptionCondition
ArgumentNullException

name is null.

-or-

value is null.

ArgumentException The name contains illegal characters.
Remarks
Adds a new parameter to the list with the specified name and value.
See Also