Convert

Convert(Func<Stream>, ConvertOptions)

Converts source document. Saves the whole converted document.

public void Convert(Func<Stream> document, ConvertOptions convertOptions)
Parameter Type Description
document Func`1 The delegate that saves converted document to a stream.
convertOptions ConvertOptions The convert options specific to desired target file type.

Remarks

Learn more

See Also


Convert(Func<Stream>, Action<string, FileType, Stream>, ConvertOptions)

Converts source document. Saves the whole converted document.

public void Convert(Func<Stream> document, Action<string, FileType, Stream> documentCompleted, 
    ConvertOptions convertOptions)
Parameter Type Description
document Func`1 The delegate that saves converted document to a stream.
documentCompleted Action`3 The delegate that receive converted document stream. The name of the source fileThe target file typeThe converted file content stream
convertOptions ConvertOptions The convert options specific to desired target file type.

Remarks

Learn more

See Also


Convert(Func<Stream>, Func<string, FileType, ConvertOptions>)

Converts source document. Saves the whole converted document.

public void Convert(Func<Stream> document, 
    Func<string, FileType, ConvertOptions> convertOptionsProvider)
Parameter Type Description
document Func`1 The delegate that saves converted document to a stream.
convertOptionsProvider Func`3 Convert options provider. Will be called for each conversion to provide specific convert options to desired target document type. The name of the fileThe type of the file

Remarks

Learn more

See Also


Convert(Func<Stream>, Action<string, FileType, Stream>, Func<string, FileType, ConvertOptions>)

Converts source document. Saves the whole converted document.

public void Convert(Func<Stream> document, Action<string, FileType, Stream> documentCompleted, 
    Func<string, FileType, ConvertOptions> convertOptionsProvider)
Parameter Type Description
document Func`1 The delegate that saves converted document to a stream.
documentCompleted Action`3 The delegate that receive converted document stream. The name of the source fileThe target file typeThe converted file content stream
convertOptionsProvider Func`3 Convert options provider. Will be called for each conversion to provide specific convert options to desired target document type. The name of the fileThe type of the file

Remarks

Learn more

See Also


Convert(Func<FileType, Stream>, ConvertOptions)

Converts source document. Saves the whole converted document.

public void Convert(Func<FileType, Stream> document, ConvertOptions convertOptions)
Parameter Type Description
document Func`2 The delegate that saves converted document to a stream. The type of the converted file
convertOptions ConvertOptions The convert options specific to desired target file type.

Remarks

Learn more

See Also


Convert(Func<FileType, Stream>, Action<string, FileType, Stream>, ConvertOptions)

Converts source document. Saves the whole converted document.

public void Convert(Func<FileType, Stream> document, 
    Action<string, FileType, Stream> documentCompleted, ConvertOptions convertOptions)
Parameter Type Description
document Func`2 The delegate that saves converted document to a stream. The type of the target file
documentCompleted Action`3 The delegate that receive converted document stream. The name of the source fileThe target file typeThe converted file content stream
convertOptions ConvertOptions The convert options specific to desired target file type.

Remarks

Learn more

See Also


Convert(Func<FileType, Stream>, Func<string, FileType, ConvertOptions>)

Converts source document. Saves the whole converted document.

public void Convert(Func<FileType, Stream> document, 
    Func<string, FileType, ConvertOptions> convertOptionsProvider)
Parameter Type Description
document Func`2 The delegate that saves converted document to a stream. The type of the source file
convertOptionsProvider Func`3 Convert options provider. Will be called for each conversion to provide specific convert options to desired target document type. The name of the fileThe type of the file

Remarks

Learn more

See Also


Convert(Func<FileType, Stream>, Action<string, FileType, Stream>, Func<string, FileType, ConvertOptions>)

Converts source document. Saves the whole converted document.

public void Convert(Func<FileType, Stream> document, 
    Action<string, FileType, Stream> documentCompleted, 
    Func<string, FileType, ConvertOptions> convertOptionsProvider)
Parameter Type Description
document Func`2 The delegate that saves converted document to a stream. The type of the source file
documentCompleted Action`3 The delegate that receive converted document stream. The name of the source fileThe target file typeThe converted file content stream
convertOptionsProvider Func`3 Convert options provider. Will be called for each conversion to provide specific convert options to desired target document type. The name of the fileThe type of the file

Remarks

Learn more

See Also


Convert(string, ConvertOptions)

Converts source document. Saves the whole converted document.

public void Convert(string filePath, ConvertOptions convertOptions)
Parameter Type Description
filePath String The file path to the source document.
convertOptions ConvertOptions The convert options specific to desired target file type.

Remarks

Learn more

See Also


Convert(Func<int, Stream>, ConvertOptions)

Converts source document. Saves the converted document page by page.

public void Convert(Func<int, Stream> document, ConvertOptions convertOptions)
Parameter Type Description
document Func`2 The delegate that saves converted document to a stream. Page number
convertOptions ConvertOptions The convert options specific to desired target file type.

Remarks

Learn more

See Also


Convert(Func<int, Stream>, Action<string, FileType, int, Stream>, ConvertOptions)

Converts source document. Saves the converted document page by page.

public void Convert(Func<int, Stream> document, 
    Action<string, FileType, int, Stream> documentCompleted, ConvertOptions convertOptions)
Parameter Type Description
document Func`2 The delegate that saves converted document page to a stream. Page number
documentCompleted Action`4 The delegate that receive converted document page stream. The name of the source fileThe target file typePage numberThe converted file content stream
convertOptions ConvertOptions The convert options specific to desired target file type.

Remarks

Learn more

See Also


Convert(Func<int, Stream>, Func<string, FileType, ConvertOptions>)

Converts source document. Saves the converted document page by page.

public void Convert(Func<int, Stream> document, 
    Func<string, FileType, ConvertOptions> convertOptionsProvider)
Parameter Type Description
document Func`2 The delegate that saves converted document to a stream. Page number
convertOptionsProvider Func`3 Convert options provider. Will be called for each conversion to provide specific convert options to desired target document type. The name of the fileThe type of the file

Remarks

Learn more

See Also


Convert(Func<int, Stream>, Action<string, FileType, int, Stream>, Func<string, FileType, ConvertOptions>)

Converts source document. Saves the converted document page by page.

public void Convert(Func<int, Stream> document, 
    Action<string, FileType, int, Stream> documentCompleted, 
    Func<string, FileType, ConvertOptions> convertOptionsProvider)
Parameter Type Description
document Func`2 The delegate that saves converted document page to a stream. Page number
documentCompleted Action`4 The delegate that receive converted document page stream. The name of the source fileThe target file typePage numberThe converted file content stream
convertOptionsProvider Func`3 Convert options provider. Will be called for each conversion to provide specific convert options to desired target document type. The name of the fileThe type of the file

Remarks

Learn more

See Also


Convert(Func<int, FileType, Stream>, ConvertOptions)

Converts source document. Saves the converted document page by page.

public void Convert(Func<int, FileType, Stream> document, ConvertOptions convertOptions)
Parameter Type Description
document Func`3 The delegate that saves converted document to a stream. Page number
convertOptions ConvertOptions The convert options specific to desired target file type.

Remarks

Learn more

See Also


Convert(Func<int, FileType, Stream>, Action<string, FileType, int, Stream>, ConvertOptions)

Converts source document. Saves the converted document page by page.

public void Convert(Func<int, FileType, Stream> document, 
    Action<string, FileType, int, Stream> documentCompleted, ConvertOptions convertOptions)
Parameter Type Description
document Func`3 The delegate that saves converted document page to a stream. Page numberFile type
documentCompleted Action`4 The delegate that receive converted document page stream. The name of the source fileThe target file typePage numberThe converted file content stream
convertOptions ConvertOptions The convert options specific to desired target file type.

Remarks

Learn more

See Also


Convert(Func<int, FileType, Stream>, Func<string, FileType, ConvertOptions>)

Converts source document. Saves the converted document page by page.

public void Convert(Func<int, FileType, Stream> document, 
    Func<string, FileType, ConvertOptions> convertOptionsProvider)
Parameter Type Description
document Func`3 The delegate that saves converted document to a stream. Page numberFile type
convertOptionsProvider Func`3 Convert options provider. Will be called for each conversion to provide specific convert options to desired target document type. The name of the fileThe type of the file

Remarks

Learn more

See Also


Convert(Func<int, FileType, Stream>, Action<string, FileType, int, Stream>, Func<string, FileType, ConvertOptions>)

Converts source document. Saves the converted document page by page.

public void Convert(Func<int, FileType, Stream> document, 
    Action<string, FileType, int, Stream> documentCompleted, 
    Func<string, FileType, ConvertOptions> convertOptionsProvider)
Parameter Type Description
document Func`3 The delegate that saves converted document page to a stream. Page numberFile type
documentCompleted Action`4 The delegate that receive converted document page stream. The name of the source fileThe target file typePage numberThe converted file content stream
convertOptionsProvider Func`3 Convert options provider. Will be called for each conversion to provide specific convert options to desired target document type. The name of the fileThe type of the file

Remarks

Learn more

See Also