Click or drag to resize
MimeKit

MimePartPrepare Method

Prepare the MIME entity for transport using the specified encoding constraints.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public override void Prepare(
	EncodingConstraint constraint,
	int maxLineLength = 78
)

Parameters

constraint  EncodingConstraint
The encoding constraint.
maxLineLength  Int32  (Optional)
The maximum number of octets allowed per line (not counting the CRLF). Must be between 60 and 998 (inclusive).
Exceptions
ExceptionCondition
ArgumentOutOfRangeException

maxLineLength is not between 60 and 998 (inclusive).

-or-

constraint is not a valid value.

ObjectDisposedException The MimePart has been disposed.
Remarks
Prepares the MIME entity for transport using the specified encoding constraints.
See Also