ExporterBase

ExporterBase class

Provides the base class for the data export functionality.

public abstract class ExporterBase

Methods

Name Description
abstract Export(DocumentData, Stream) Exports document data to the stream.
Export(DocumentData, string) Exports document data to the file.
abstract Export(IDocumentInfo, Stream) Exports the document information to the stream.
Export(IDocumentInfo, string) Exports the document information to the file.
abstract Export(IEnumerable<MetadataItem>, Stream) Exports the collection of metadata to the stream.
Export(IEnumerable<MetadataItem>, string) Exports the collection of metadata to the file.
abstract Export(IEnumerable<PageBarcodeArea>, Stream) Exports the collection of barcodes to the stream.
Export(IEnumerable<PageBarcodeArea>, string) Exports the collection of barcodes to the file.
abstract Export(IEnumerable<PageTableArea>, Stream) Exports the collection of tables to the stream.
Export(IEnumerable<PageTableArea>, string) Exports the collection of tables to the file.
abstract Export(IEnumerable<PageTextArea>, Stream) Exports the collection of text areas to the stream.
Export(IEnumerable<PageTextArea>, string) Exports the collection of text areas to the file.

See Also