Click or drag to resize
MimeKit

ParameterListAdd(Parameter) Method

Add a Parameter to a ParameterList.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public void Add(
	Parameter param
)

Parameters

param  Parameter
The parameter to add.

Implements

ICollectionTAdd(T)
Exceptions
ExceptionCondition
ArgumentNullException The param is null.
ArgumentException A parameter with the same name as param already exists.
Remarks
Adds the specified parameter to the end of the list.
See Also