Dispose() |
Disposes the current instance. |
virtual Flush() |
Clears all buffers for this stream and causes any buffered data to be written to the underlying device. |
virtual Read(byte[]) |
Reads bytes to fill the specified bytes buffer. |
virtual Read(byte[], int, int) |
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. |
virtual ReadByte() |
Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream. |
virtual Save(Stream) |
Saves (copies) the stream’s data to the specified stream. Uses default buffer size ReadWriteBytesCount and stream Length value. |
virtual Save(string) |
Saves (copies) the stream’s data to the specified stream. Uses default buffer size ReadWriteBytesCount and stream Length value. |
virtual Save(Stream, int) |
Saves (copies) all the stream’s data to the specified stream. Uses stream Length value. |
virtual Save(string, int) |
Saves (copies) the stream’s data to the specified stream. Uses stream Length value. |
virtual Save(Stream, int, long) |
Saves (copies) the stream’s data to the specified stream. |
virtual Save(string, int, long) |
Saves (copies) the stream’s data to the specified stream. |
virtual Seek(long, SeekOrigin) |
Sets the position within the current stream. |
virtual SeekBegin() |
Sets the stream position to the beginning of the stream. This value represents offset from the starting stream position passed in the StreamContainer constructor. |
virtual ToBytes() |
Converts the stream data to the Byte array. |
virtual ToBytes(long, long) |
Converts the stream data to the Byte array. |
virtual Write(byte[]) |
Writes all of the specified bytes to the stream. |
virtual Write(byte[], int, int) |
Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. |
virtual WriteByte(byte) |
Writes a byte to the current position in the stream and advances the position within the stream by one byte. |
virtual WriteTo(StreamContainer) |
Copies the contained data to another StreamContainer . |
virtual WriteTo(StreamContainer, long) |
Copies the contained data to another StreamContainer . |
explicit operator |
Performs an explicit conversion from StreamContainer to Stream. |