Click or drag to resize
MimeKit

EncodingConstraint Enumeration

A content encoding constraint.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public enum EncodingConstraint
Members
Member nameValueDescription
None0 There are no encoding constraints, the content may contain any byte.
EightBit1 The content may contain bytes with the high bit set, but must not contain any zero-bytes.
SevenBit2 The content may only contain bytes within the 7-bit ASCII range.
Remarks
Not all message transports support binary or 8-bit data, so it becomes necessary to constrain the content encoding to a subset of the possible Content-Transfer-Encoding values.
See Also