Save
Save(Stream)
Saves the result document to the stream document.
public IMerger Save(Stream document)
Parameter |
Type |
Description |
document |
Stream |
The document stream. |
Exceptions
exception |
condition |
ArgumentNullException |
Thrown when document is null. |
See Also
Save(string)
Saves the result document file to filePath.
public IMerger Save(string filePath)
Parameter |
Type |
Description |
filePath |
String |
The file name or full file path. |
Exceptions
exception |
condition |
ArgumentNullException |
Thrown when filePath is null or empty. |
See Also
Save(string, bool)
Saves the result document file to filePath.
public IMerger Save(string filePath, bool useDefaultDirectory)
Parameter |
Type |
Description |
filePath |
String |
The file path or name in case of default directory usage. |
useDefaultDirectory |
Boolean |
Use the default directory from settings. |
Exceptions
exception |
condition |
ArgumentNullException |
Thrown when filePath is null or empty. |
See Also