The NI.Email.Mime.Message namespace contains classes and interfaces for MIME message object structure.
Classes
| Class | Description | |
|---|---|---|
| AbstractBody |
Abstract Body implementation providing the parent
functionality required by bodies.
| |
| BodyPart |
Represents a MIME body part (see RFC 2045).
| |
| Entity |
MIME entity. An entity has a header and a body (see RFC 2045).
| |
| Header |
The header of an entity (see RFC 2045).
| |
| MemoryBinaryBody |
Binary body stored in memory.
| |
| MemoryTextBody |
Text body stored in memory.
| |
| MimeMessage |
Represents a MIME message. The following code parses a stream into a
Message object.
Message msg = new Message(new FileStream("mime.msg")); | |
| Multipart |
Represents a MIME multipart body (see RFC 2045).A multipart body has a
ordered list of body parts. The multipart body also has a preamble and
epilogue. The preamble consists of whatever characters appear before the
first body part while the epilogue consists of whatever characters come
after the last body part.
|
Interfaces
| Interface | Description | |
|---|---|---|
| IBinaryBody |
Interface implemented by bodies containing binary data.
| |
| IBody |
Encapsulates the body of an entity (see RFC 2045).
| |
| ICharsetAwareBody | ||
| ITextBody |
Encapsulates the contents of a text/* entity body.
|