Load

Load(string)

Set source document fileName

public IConversionLoadOptionsOrSourceDocumentLoaded Load(string fileName)
Parameter Type Description
fileName String Source document

See Also


Load(string[])

Set source documents array

public IConversionLoadOptionsOrSourceDocumentLoaded Load(string[] fileName)
Parameter Type Description
fileName String[] Set of source documents

See Also


Load(Func<Stream>)

Set source document stream

public IConversionLoadOptionsOrSourceDocumentLoaded Load(Func<Stream> documentStreamProvider)
Parameter Type Description
documentStreamProvider Func`1 Source document stream provider

Exceptions

exception condition
InvalidConverterSettingsException If validation of converter settings fails this exception will be thrown

See Also


Load(Func<Stream[]>)

Set source documents streams array

public IConversionLoadOptionsOrSourceDocumentLoaded Load(Func<Stream[]> documentStreamProvider)
Parameter Type Description
documentStreamProvider Func`1 Source document streams provider

Exceptions

exception condition
InvalidConverterSettingsException If validation of converter settings fails this exception will be thrown

See Also