Save
IOutputSaver.Save method
Saves the output file to the given path.
public void Save(string path, IOutputFile outputFile)
| Parameter | Type | Description | 
|---|---|---|
| path | String | Path to save the file to. | 
| outputFile | IOutputFile | Output file. | 
Examples
Saving into the FileStream implementation example:
[C#]
public void Save(string path, IOutputFile outputFile)
{
    using (FileStream stream = new FileStream(path, FileMode.Create))
    {
        outputFile.Write(stream);
    }
}
See Also
- interface IOutputFile
- interface IOutputSaver
- namespace Aspose.Slides.Export.Web
- assembly Aspose.Slides