[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
TBytesStream descendent with some single-byte string methods.
Source position: classesh.inc line 1576
type TRawByteStringStream = class(TBytesStream) |
||
public |
||
constructor Create(); overload; |
|
Create a new instance of TRawByteStringStream. |
function DataString; |
|
Return the stream contents as a single-byte string. |
function ReadString(); |
|
Read a string from the stream. |
procedure WriteString(); |
|
Write a string to the stream. |
end; |
|
TBytesStream descendent with some single-byte string methods. |
|
| | ||
|
Stream of bytes. |
|
| | ||
|
Standard implementation of a stream that stores its data in memory. |
|
| | ||
|
Abstract stream that stores its data in memory. |
|
| | ||
|
Base class for streams. |
|
| | ||
|
Base class of all classes. |
TRawByteStringStream is a TBytesStream descendent which introduces some auxiliary methods that help with inserting or extracting single-byte strings from the data: DataStringReadString and WriteString.
In difference with TStringStream, the data has no codepage information associated with it, so the data is always considered to use the default codepage.
|
Stream that stores its data in a string. |
|
|
Return the stream contents as a single-byte string. |
|
|
Read a string from the stream. |
|
|
Write a string to the stream. |