Overload List
Name | Description | |
---|---|---|
![]() | Open(Stream, Char, FileInfo) | Open a literal data packet for the passed in FileInfo object, returning an output stream for saving the file contents. The stream created can be closed off by either calling Close() on the stream or Close() on the generator. Closing the returned stream does not close off the Stream parameter outStr. |
![]() | Open(Stream, Char, String, DateTime, array<Byte>[]()[][]) | Open a literal data packet, returning a stream to store the data inside the packet, as an indefinite length stream. The stream is written out as a series of partial packets with a chunk size determined by the size of the passed in buffer. The stream created can be closed off by either calling Close() on the stream or Close() on the generator. Closing the returned stream does not close off the Stream parameter outStr. Note: if the buffer is not a power of 2 in length only the largest power of 2 bytes worth of the buffer will be used. |
![]() | Open(Stream, Char, String, Int64, DateTime) | Open a literal data packet, returning a stream to store the data inside the packet. The stream created can be closed off by either calling Close() on the stream or Close() on the generator. Closing the returned stream does not close off the Stream parameter outStr. |