Mail storage converter provides services for storage conversion operations. More...
Inherits Object.
Public Types | |
using | MailHandler = System::MulticastDelegate< void(System::SharedPtr< MailMessage >)> |
Static Public Member Functions | |
static ASPOSE_EMAIL_SHARED_API System::SharedPtr< Pst::PersonalStorage > | MboxToPst (System::String mboxFileName, System::String pstFileName) |
Converts an mboxrd message store to PST. More... | |
static ASPOSE_EMAIL_SHARED_API System::SharedPtr< Pst::PersonalStorage > | MboxToPst (System::String mboxFileName, System::String pstFileName, MailStorageConverter::MailHandler mailHandler) |
Converts an mboxrd message store to PST. More... | |
static ASPOSE_EMAIL_SHARED_API System::SharedPtr< Pst::PersonalStorage > | MboxToPst (System::SharedPtr< System::IO::Stream > mboxrdDataStream, System::String pstFileName) |
Converts an mboxrd message store to PST. More... | |
static ASPOSE_EMAIL_SHARED_API System::SharedPtr< Pst::PersonalStorage > | MboxToPst (System::SharedPtr< System::IO::Stream > mboxrdDataStream, System::String pstFileName, MailStorageConverter::MailHandler mailHandler) |
Converts an mboxrd message store to PST. More... | |
Mail storage converter provides services for storage conversion operations.
using Aspose::Email::Storage::MailStorageConverter::MailHandler = System::MulticastDelegate<void(System::SharedPtr<MailMessage>)> |
|
static |
Converts an mboxrd message store to PST.
mboxrdDataStream | The mboxrd data stream. |
pstFileName | Name of the PST file. |
ArgumentNullException | If mboxrdDataStream is null. |
ArgumentNullException | If pstFileName is null or empty. |
|
static |
Converts an mboxrd message store to PST.
mboxrdDataStream | The mboxrd data stream. |
pstFileName | Name of the PST file. |
mailHandler | The delegate called on each message |
ArgumentNullException | If mboxrdDataStream is null. |
ArgumentNullException | If pstFileName is null or empty. |
|
static |
Converts an mboxrd message store to PST.
mboxFileName | Name of the mbox file. |
pstFileName | Name of the PST file. |
ArgumentNullException | If mboxFileName is null. |
In addition the same set of exceptions can be thrown as for FileStream creation using the open/read, create/write mode.
|
static |
Converts an mboxrd message store to PST.
mboxFileName | Name of the mbox file. |
pstFileName | Name of the PST file. |
mailHandler | The delegate called on each message |
ArgumentNullException | If mboxFileName is null. |
In addition the same set of exceptions can be thrown as for FileStream creation using the open/read, create/write mode.