![]() |
IStreamer Interface |
public interface IStreamer : IDisposable
The IStreamer type exposes the following members.
Name | Description | |
---|---|---|
![]() | Close | Closes any open streams. Internally it safely calls Dispose. |
![]() | Copy | Copies the contents of one Blob or file to another one. |
![]() | ListLines | Iterates over the lines in a text stream. |
![]() | OpenAppend | Opens the stream for append writing. |
![]() | OpenRead | Opens the stream for reading. |
![]() | OpenWrite | Opens the stream for writing. Any existing data is overwritten. |
![]() | OpenZipRead | Opens a zip stream for reading. |
![]() | ReadLine | Reads a text line from the current position of the stream. |
![]() | ReadToEnd | Reads all text from the curent position of the stream to the end. |
![]() | Size | Gets the size of the stream. |
![]() | Write | Writes a string to the stream. |
![]() | WriteLine | Write a string to the stream, terminated by the appropriate line terminator for the current operating system (CRLF for Windows, LF for Linux, etc). |