Close() override | Closes the stream. |
Flush() override | Does nothing. |
get_CanRead() const override | Determines if the stream is readable. |
get_CanSeek() const override | Determines if the stream supports seeking. |
get_CanWrite() const override | Determines if the stream is writable. |
get_Capacity() | Returns the current capacity of the underlying memory buffer. |
get_Length() const override | Returns the length of the stream in bytes. |
get_Position() const override | Returns the current position of the stream. |
virtual GetBuffer() | Returns a pointer to the underlying buffer. |
MemoryStream() | Constructs a new instance of the MemoryStream class with initial capacity equal to 0. |
MemoryStream(int) | Constructs a new instance of the MemoryStream class that represents a stream based on a memory buffer of the specified size. |
MemoryStream(const ArrayPtr<uint8_t>&, bool) | Constructs a new instance of the MemoryStream class that represents a memory stream which is connected to the specified memory buffer. A parameter specifies if the stream is writable. |
MemoryStream(const ArrayPtr<uint8_t>&, int, int, bool, bool) | Constructs a new instance of the MemoryStream class that represents a memory stream which is connected to a segment of the specified memory buffer starting at the specified index and including the specified number of elements. Parameters specifies if the stream is writable and if method GetBytes() can be called. |
Read(const ArrayPtr<uint8_t>&, int32_t, int32_t) override | Reads the specified number of bytes from the stream and writes them to the specified byte array. |
Read(const System::Details::ArrayView<uint8_t>&, int32_t, int32_t) override | Reads the specified number of bytes from the stream and writes them to the specified byte array. |
ReadByte() override | Reads a single byte from the stream and returns a 32-bit integer value equivalent to the value of the read byte. |
Seek(int64_t, SeekOrigin) override | Sets the position of the stream represented by the current object. |
set_Capacity(int) | Sets the capacity of the underlying memory buffer. |
set_Position(int64_t) override | Sets the stream’s position. |
SetLength(int64_t) override | Sets the length of the stream represented by the current object. |
virtual ToArray() | Returns a copy of underlying memory buffer as an array of bytes. |
TryGetBuffer(ArraySegment<uint8_t>&) | Returns the array of unsigned bytes from which this stream was created. |
Write(const ArrayPtr<uint8_t>&, int32_t, int32_t) override | Writes the specified subrange of bytes from the specified byte array to the stream. |
Write(const System::Details::ArrayView<uint8_t>&, int32_t, int32_t) override | Writes the specified subrange of bytes from the specified byte array to the stream. |
WriteByte(uint8_t) override | Writes the specified unsigned 8-bit integer value to the stream. |
virtual WriteTo(SharedPtr<Stream>) | Writes the content of the underlying buffer to the specified stream. |