IMultipart Interface |
public interface IMultipart : IMimeEntity, IDisposable, ICollection<MimeEntity>, IEnumerable<MimeEntity>, IEnumerable, IList<MimeEntity>
The IMultipart type exposes the following members.
Name | Description | |
---|---|---|
Boundary | Get or set the boundary. | |
ContentBase |
Get or set the base content URI.
(Inherited from IMimeEntity) | |
ContentDisposition |
Get or set the content disposition.
(Inherited from IMimeEntity) | |
ContentId |
Get or set the Content-Id.
(Inherited from IMimeEntity) | |
ContentLocation |
Get or set the content location.
(Inherited from IMimeEntity) | |
ContentType |
Get the type of the content.
(Inherited from IMimeEntity) | |
Count | (Inherited from ICollectionMimeEntity) | |
Epilogue | Get or set the epilogue. | |
Headers |
Get the list of headers.
(Inherited from IMimeEntity) | |
IsAttachment |
Get a value indicating whether this entity is an attachment.
(Inherited from IMimeEntity) | |
IsReadOnly | (Inherited from ICollectionMimeEntity) | |
Item | (Inherited from IListMimeEntity) | |
Preamble | Get or set the preamble. |
All multipart MIME entities will have a Content-Type with a media type of "multipart". The most common multipart MIME entity used in email is the "multipart/mixed" entity.
Four (4) initial subtypes were defined in the original MIME specifications: mixed, alternative, digest, and parallel.
The "multipart/mixed" type is a sort of general-purpose container. When used in email, the first entity is typically the "body" of the message while additional entities are most often file attachments.
Speaking of message "bodies", the "multipart/alternative" type is used to offer a list of alternative formats for the main body of the message (usually they will be "text/plain" and "text/html"). These alternatives are in order of increasing faithfulness to the original document (in other words, the last entity will be in a format that, when rendered, will most closely match what the sending client's WYSISYG editor produced).
The "multipart/digest" type will typically contain a digest of MIME messages and is most commonly used by mailing-list software.
The "multipart/parallel" type contains entities that are all meant to be shown (or heard) in parallel.
Another commonly used type is the "multipart/related" type which contains, as one might expect, inter-related MIME parts which typically reference each other via URIs based on the Content-Id and/or Content-Location headers.