 | EncodingConstraint Enumeration |
A content encoding constraint.
Namespace:
MimeKit
Assembly:
MimeKit (in MimeKit.dll) Version: 3.0.0
Syntaxpublic enum EncodingConstraint
Members
| Member name | Value | Description |
---|
| None | 0 |
There are no encoding constraints, the content may contain any byte.
|
| EightBit | 1 |
The content may contain bytes with the high bit set, but must not contain any zero-bytes.
|
| SevenBit | 2 |
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