System.Classes.TBinaryReader.GetBaseStream

From RAD Studio API Documentation
Revision as of 22:50, 16 October 2011 by PyBot (talk | contribs) (Scoping Libraries)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

function GetBaseStream: TStream; virtual;

C++

virtual TStream* __fastcall GetBaseStream(void);

Properties

Type Visibility Source Unit Parent
function protected
System.Classes.pas
System.Classes.hpp
System.Classes TBinaryReader

Description

Returns the BaseStream of TBinaryReader. GetBaseStream returns the BaseStream of the TBinaryReader. Use it when you need to use the stream from which TBinaryReader reads.

Note: Beware that, if the stream is owned by TBinaryReader, it will be destroyed when TBinaryReader is destroyed.

See Also