| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Base class for streams that are identified by an OS handle.
Source position: classesh.inc line 931
| type THandleStream = class(TStream) | ||
| public | ||
| constructor Create(); | 
 | Create a handlestream from an OS Handle. | 
| function Read(); override; | 
 | Overrides standard read method. | 
| function Write(); override; | 
 | Overrides standard write method. | 
| function Seek(); override; | 
 | Overrides the Seek method. | 
| 
 | The OS handle of the stream. | |
| end; | 
| 
 | Base class for streams that are identified by an OS handle. | |
| | | ||
| 
 | Base class for streams. | |
| | | ||
| 
 | Base class of all classes. | 
THandleStream is an abstract descendant of the TStream class that provides methods for a stream to handle all reading and writing to and from a handle, provided by the underlying OS. To this end, it overrides the Read and Write methods of TStream.
| Remark: | 
 | 
| 
 | Base class for streams. | |
| 
 | Stream that stores its data in a named file on disk. |