MimeTypeInfoAppendTo Method

Appends a String representation of this instance according to RFC 2045 and RFC 2231 to the end of a StringBuilder.

Definition

Namespace: FolkerKinzel.MimeTypes
Assembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
C#
public StringBuilder AppendTo(
	StringBuilder builder,
	MimeFormats options = MimeFormats.Default,
	int maxLineLength = 64
)

Parameters

builder  StringBuilder
The StringBuilder.
options  MimeFormats  (Optional)
Named constants to specify options for the serialization of the instance. The flags can be combined.
maxLineLength  Int32  (Optional)
The number of characters in a single line of the serialized instance before a line-wrapping occurs. The parameter is ignored, if the flag LineWrapping is not set. If the value of the argument is smaller than MinLineLength, the value of MinLineLength is taken instead.

Return Value

StringBuilder
A reference to builder.

Exceptions

ArgumentNullExceptionbuilder is null.

See Also