Converter

Converter(Func<Stream>)

Initializes new instance of Converter class.

public Converter(Func<Stream> document)
Parameter Type Description
document Func`1 The method that returns readable stream.

Exceptions

exception condition
ArgumentNullException Thrown when document is null.

Remarks

Learn more

See Also


Converter(Func<Stream>, Func<ConverterSettings>)

Initializes new instance of Converter class.

public Converter(Func<Stream> document, Func<ConverterSettings> settings)
Parameter Type Description
document Func`1 The method that returns readable stream.
settings Func`1 The Converter settings.

Remarks

Learn more

See Also


Converter(Func<Stream>, Func<LoadOptions>)

Initializes new instance of Converter class.

public Converter(Func<Stream> document, Func<LoadOptions> loadOptions)
Parameter Type Description
document Func`1 The method that returns readable stream.
loadOptions Func`1 The methods that returns document load options.

Remarks

Learn more

See Also


Converter(Func<Stream>, Func<LoadOptions>, Func<ConverterSettings>)

Initializes new instance of Converter class.

public Converter(Func<Stream> document, Func<LoadOptions> loadOptions, 
    Func<ConverterSettings> settings)
Parameter Type Description
document Func`1 The method that returns readable stream.
loadOptions Func`1 The methods that returns document load options.
settings Func`1 The Converter settings.

Remarks

Learn more

See Also


Converter(Func<Stream>, Func<FileType, LoadOptions>)

Initializes new instance of Converter class.

public Converter(Func<Stream> document, Func<FileType, LoadOptions> loadOptions)
Parameter Type Description
document Func`1 The method that returns readable stream.
loadOptions Func`2 The methods that returns document load options. The type of the source file

Remarks

Learn more

See Also


Converter(Func<Stream>, Func<FileType, LoadOptions>, Func<ConverterSettings>)

Initializes new instance of Converter class.

public Converter(Func<Stream> document, Func<FileType, LoadOptions> loadOptions, 
    Func<ConverterSettings> settings)
Parameter Type Description
document Func`1 The method that returns readable stream.
loadOptions Func`2 The methods that returns document load options. The type of the source file
settings Func`1 The Converter settings.

Remarks

Learn more

See Also


Converter(string)

Initializes new instance of Converter class.

public Converter(string filePath)
Parameter Type Description
filePath String The file path to the source document.

Remarks

Learn more

See Also


Converter(string, Func<ConverterSettings>)

Initializes new instance of Converter class.

public Converter(string filePath, Func<ConverterSettings> settings)
Parameter Type Description
filePath String The file path to the source document.
settings Func`1 The Converter settings.

Remarks

Learn more

See Also


Converter(string, Func<LoadOptions>)

Initializes new instance of Converter class.

public Converter(string filePath, Func<LoadOptions> loadOptions)
Parameter Type Description
filePath String The file path to the source document.
loadOptions Func`1 The methods that returns document load options.

Remarks

Learn more

See Also


Converter(string, Func<LoadOptions>, Func<ConverterSettings>)

Initializes new instance of Converter class.

public Converter(string filePath, Func<LoadOptions> loadOptions, Func<ConverterSettings> settings)
Parameter Type Description
filePath String The file path to the source document.
loadOptions Func`1 The methods that returns document load options.
settings Func`1 The Converter settings.

Remarks

Learn more

See Also


Converter(string, Func<FileType, LoadOptions>)

Initializes new instance of Converter class.

public Converter(string filePath, Func<FileType, LoadOptions> loadOptions)
Parameter Type Description
filePath String The file path to the source document.
loadOptions Func`2 The methods that returns document load options. The type of the source file

Remarks

Learn more

See Also


Converter(string, Func<FileType, LoadOptions>, Func<ConverterSettings>)

Initializes new instance of Converter class.

public Converter(string filePath, Func<FileType, LoadOptions> loadOptions, 
    Func<ConverterSettings> settings)
Parameter Type Description
filePath String The file path to the source document.
loadOptions Func`2 The methods that returns document load options. The type of the source file
settings Func`1 The Converter settings.

Remarks

Learn more

See Also