API Reference

Class

EmailStoreMboxExportOptions

Namespace OfficeIMO.Email.Store
Assembly OfficeIMO.Email
Modifiers sealed

Selection and streaming policy for mbox export.

Inheritance

  • Object
  • EmailStoreMboxExportOptions

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Accepted by parameters

Constructors

public EmailStoreMboxExportOptions(String folderId = null, Boolean includeDescendants = false, Boolean includeAssociatedItems = false, Boolean includeOrphanedItems = false, Boolean overwriteExisting = false, Boolean continueOnError = true, Int32 maxItems = 100000, EmailMailboxWriterOptions writerOptions = null) #

Creates mbox export options.

Parameters

folderId System.String = null optionalposition: 0
includeDescendants System.Boolean = false optionalposition: 1
includeAssociatedItems System.Boolean = false optionalposition: 2
includeOrphanedItems System.Boolean = false optionalposition: 3
overwriteExisting System.Boolean = false optionalposition: 4
continueOnError System.Boolean = true optionalposition: 5
maxItems System.Int32 = 100000 optionalposition: 6
writerOptions OfficeIMO.Email.EmailMailboxWriterOptions = null optionalposition: 7

Properties

public String FolderId { get; } #

Optional source folder identifier. Null exports every folder.

public Boolean IncludeDescendants { get; } #

Whether descendants of FolderId are included.

public Boolean IncludeAssociatedItems { get; } #

Whether folder-associated information items are exported.

public Boolean IncludeOrphanedItems { get; } #

Whether recoverable items absent from contents tables are exported.

public Boolean OverwriteExisting { get; } #

Whether an existing destination may be atomically replaced.

public Boolean ContinueOnError { get; } #

Whether later items are attempted after a read or conversion failure.

public Int32 MaxItems { get; } #

Maximum item references attempted.

public EmailMailboxWriterOptions WriterOptions { get; } #

Underlying mbox variant and OfficeIMO.Email message writer policy.