Click or drag to resize
MimeKit

IMultipartEncrypted Interface

An interface for a multipart MIME part with a ContentType of multipart/encrypted containing an encrypted MIME part.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.7.1
Syntax
C#
public interface IMultipartEncrypted : IMultipart, 
	IMimeEntity, IDisposable, ICollection<MimeEntity>, IEnumerable<MimeEntity>, 
	IEnumerable, IList<MimeEntity>

The IMultipartEncrypted type exposes the following members.

Properties
 NameDescription
Public propertyBoundary Get or set the boundary.
(Inherited from IMultipart)
Public propertyContentBase Get or set the base content URI.
(Inherited from IMimeEntity)
Public propertyContentDisposition Get or set the content disposition.
(Inherited from IMimeEntity)
Public propertyContentId Get or set the Content-Id.
(Inherited from IMimeEntity)
Public propertyContentLocation Get or set the content location.
(Inherited from IMimeEntity)
Public propertyContentType Get the type of the content.
(Inherited from IMimeEntity)
Public propertyCount
(Inherited from ICollectionMimeEntity)
Public propertyEpilogue Get or set the epilogue.
(Inherited from IMultipart)
Public propertyHeaders Get the list of headers.
(Inherited from IMimeEntity)
Public propertyIsAttachment Get a value indicating whether this entity is an attachment.
(Inherited from IMimeEntity)
Public propertyIsReadOnly
(Inherited from ICollectionMimeEntity)
Public propertyItem
(Inherited from IListMimeEntity)
Public propertyPreamble Get or set the preamble.
(Inherited from IMultipart)
Top
Methods
 NameDescription
Public methodAccept Dispatches to the specific visit method for this MIME entity.
(Inherited from IMimeEntity)
Public methodAdd
(Inherited from ICollectionMimeEntity)
Public methodClear
(Inherited from ICollectionMimeEntity)
Public methodContains
(Inherited from ICollectionMimeEntity)
Public methodCopyTo
(Inherited from ICollectionMimeEntity)
Public methodDecrypt(CancellationToken) Decrypts the IMultipartEncrypted part.
Public methodDecrypt(DigitalSignatureCollection, CancellationToken) Decrypts the IMultipartEncrypted part.
Public methodDecrypt(OpenPgpContext, CancellationToken) Decrypts the IMultipartEncrypted part.
Public methodDecrypt(OpenPgpContext, DigitalSignatureCollection, CancellationToken) Decrypts the IMultipartEncrypted part.
Public methodDispose
(Inherited from IDisposable)
Public methodGetEnumerator
(Inherited from IEnumerableMimeEntity)
Public methodIndexOf
(Inherited from IListMimeEntity)
Public methodInsert
(Inherited from IListMimeEntity)
Public methodPrepare Prepare the MIME entity for transport using the specified encoding constraints.
(Inherited from IMimeEntity)
Public methodRemove
(Inherited from ICollectionMimeEntity)
Public methodRemoveAt
(Inherited from IListMimeEntity)
Public methodWriteTo(Stream, CancellationToken) Write the IMimeEntity to the specified output stream.
(Inherited from IMimeEntity)
Public methodWriteTo(String, CancellationToken) Write the IMimeEntity to the specified file.
(Inherited from IMimeEntity)
Public methodWriteTo(FormatOptions, Stream, CancellationToken) Write the IMimeEntity to the specified output stream.
(Inherited from IMimeEntity)
Public methodWriteTo(FormatOptions, String, CancellationToken) Write the IMimeEntity to the specified file.
(Inherited from IMimeEntity)
Public methodWriteTo(Stream, Boolean, CancellationToken) Write the IMimeEntity to the specified output stream.
(Inherited from IMimeEntity)
Public methodWriteTo(String, Boolean, CancellationToken) Write the IMimeEntity to the specified file.
(Inherited from IMimeEntity)
Public methodWriteTo(FormatOptions, Stream, Boolean, CancellationToken) Write the IMimeEntity to the specified output stream.
(Inherited from IMimeEntity)
Public methodWriteTo(FormatOptions, String, Boolean, CancellationToken) Write the IMimeEntity to the specified file.
(Inherited from IMimeEntity)
Public methodWriteToAsync(Stream, CancellationToken) Asynchronously write the IMimeEntity to the specified output stream.
(Inherited from IMimeEntity)
Public methodWriteToAsync(String, CancellationToken) Asynchronously write the IMimeEntity to the specified file.
(Inherited from IMimeEntity)
Public methodWriteToAsync(FormatOptions, Stream, CancellationToken) Asynchronously write the IMimeEntity to the specified output stream.
(Inherited from IMimeEntity)
Public methodWriteToAsync(FormatOptions, String, CancellationToken) Asynchronously write the IMimeEntity to the specified file.
(Inherited from IMimeEntity)
Public methodWriteToAsync(Stream, Boolean, CancellationToken) Asynchronously write the IMimeEntity to the specified output stream.
(Inherited from IMimeEntity)
Public methodWriteToAsync(String, Boolean, CancellationToken) Asynchronously write the IMimeEntity to the specified file.
(Inherited from IMimeEntity)
Public methodWriteToAsync(FormatOptions, Stream, Boolean, CancellationToken) Asynchronously write the IMimeEntity to the specified output stream.
(Inherited from IMimeEntity)
Public methodWriteToAsync(FormatOptions, String, Boolean, CancellationToken) Asynchronously write the IMimeEntity to the specified file.
(Inherited from IMimeEntity)
Top
Remarks
This mime-type is common when dealing with PGP/MIME but is not used for S/MIME.
See Also