Lean
$LEAN_TAG$
|
Provides an implementation of TextWriter to write to a zip file More...
Public Member Functions | |
ZipStreamWriter (string filename, string zipEntry) | |
Initializes a new instance of the ZipStreamWriter class More... | |
override void | Write (char value) |
Writes a character to the text string or stream. More... | |
override void | WriteLine (string value) |
Writes a string followed by a line terminator to the text string or stream. More... | |
override void | Flush () |
Clears all buffers for the current writer and causes any buffered data to be written to the underlying device. More... | |
Public Attributes | |
override Encoding | Encoding => Encoding.Default |
When overridden in a derived class, returns the character encoding in which the output is written. More... | |
Protected Member Functions | |
override void | Dispose (bool disposing) |
Releases the unmanaged resources used by the T:System.IO.TextWriter and optionally releases the managed resources. More... | |
Provides an implementation of TextWriter to write to a zip file
Definition at line 25 of file ZipStreamWriter.cs.
QuantConnect.ZipStreamWriter.ZipStreamWriter | ( | string | filename, |
string | zipEntry | ||
) |
Initializes a new instance of the ZipStreamWriter class
filename | The output zip file name |
zipEntry | The file name in the zip file |
Definition at line 44 of file ZipStreamWriter.cs.
override void QuantConnect.ZipStreamWriter.Write | ( | char | value | ) |
Writes a character to the text string or stream.
value | The character to write to the text stream. |
T:System.ObjectDisposedException | The T:System.IO.TextWriter is closed. |
T:System.IO.IOException | An I/O error occurs. |
<filterpriority>1</filterpriority>
Definition at line 78 of file ZipStreamWriter.cs.
override void QuantConnect.ZipStreamWriter.WriteLine | ( | string | value | ) |
Writes a string followed by a line terminator to the text string or stream.
value | The string to write. If value is null, only the line terminator is written. |
T:System.ObjectDisposedException | The T:System.IO.TextWriter is closed. |
T:System.IO.IOException | An I/O error occurs. |
<filterpriority>1</filterpriority>
Definition at line 90 of file ZipStreamWriter.cs.
override void QuantConnect.ZipStreamWriter.Flush | ( | ) |
Clears all buffers for the current writer and causes any buffered data to be written to the underlying device.
Definition at line 98 of file ZipStreamWriter.cs.
|
protected |
Releases the unmanaged resources used by the T:System.IO.TextWriter and optionally releases the managed resources.
disposing | true to release both managed and unmanaged resources; false to release only unmanaged resources. |
Definition at line 107 of file ZipStreamWriter.cs.
override Encoding QuantConnect.ZipStreamWriter.Encoding => Encoding.Default |
When overridden in a derived class, returns the character encoding in which the output is written.
<filterpriority>1</filterpriority>
Definition at line 37 of file ZipStreamWriter.cs.