Interface IExport
Represents methods to save text content.
public interface IExport
Methods
- SaveFile(string)
When implemented by a class, saves text content to the specific file.
- SaveFile(string, Encoding)
When implemented by a class, saves text content to the specific file with specific encoding.
- SaveStream(Stream)
When implemented by a class, saves the text content to the specified stream.
- SaveStream(Stream, Encoding)
When implemented by a class, saves the text content to the specified stream.
- SaveStream(TextWriter)
When implemented by a class, saves the text content to the specified stream.