Click or drag to resize
MimeKit

ParameterListInsert(Int32, Parameter) Method

Insert a Parameter at the specified index.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.10.0
Syntax
C#
public void Insert(
	int index,
	Parameter param
)

Parameters

index  Int32
The index to insert the parameter.
param  Parameter
The parameter.

Implements

IListTInsert(Int32, T)
Exceptions
ExceptionCondition
ArgumentNullException The param is .
ArgumentOutOfRangeException The index is out of range.
ArgumentException A parameter with the same name as param already exists.
Remarks
Inserts the parameter at the specified index in the list.
See Also