Invoked when the parameter list changes.
Invoked when the boundary parameter changes.
The number of parameters in the list.
C#: IList.IsReadOnly (always false).
The number of parameters in the list.
StaticparseParses a parameter list from text or bytes.
The input to parse.
The parser options.
A Result; { ok: false } with a MimeError on malformed input.
StatictryAttempts to parse a parameter list from a byte range.
The parser options.
The input buffer.
The current parse cursor.
The end index of the input range.
A Result; { ok: false } with a MimeError on malformed input.
Adds a parameter with the specified name and value.
The parameter name.
The parameter value.
Adds a parameter with the specified charset, name, and value.
The charset to use when encoding the value.
The parameter name.
The parameter value.
Removes all parameters from the list.
Determines whether the list contains the specified parameter or parameter name.
The parameter or parameter name.
true if the parameter is contained; otherwise, false.
Gets the index of the specified parameter or parameter name.
The parameter or parameter name.
The index of the parameter, or -1 if it is not found.
Inserts a parameter at the specified index.
The insertion index.
The parameter to insert.
Inserts a parameter with the specified name and value.
The insertion index.
The parameter name.
The parameter value.
Removes a parameter from the list.
The parameter or parameter name to remove.
true if the parameter was removed; otherwise, false.
Gets the parameter at the specified index.
The parameter index.
Gets the value of the specified parameter name.
The parameter name.
The parameter value, or null if it is not found.
Replaces the parameter at the specified index.
The parameter index.
The replacement parameter.
Sets a parameter value by name, adding it if it does not exist.
The parameter name.
The parameter value.
Attempts to get a parameter by name.
The parameter name.
The parameter, or null if it is not found.
Encodes the parameter list and appends it to a string builder.
The formatting options.
The destination string fragments.
The current output line length.
The charset to use when encoding parameter values.
Writes the parameter list without applying header encoding.
The destination string fragments.
Serializes the parameter list.
A string representing the parameter list.
Represents a collection of MIME header parameters.