System.Classes.TTextReader.ReadToEnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ReadToEnd: string; virtual; abstract;

C++

virtual System::UnicodeString __fastcall ReadToEnd() = 0 ;

Properties

Type Visibility Source Unit Parent
function public
System.Classes.pas
System.Classes.hpp
System.Classes TTextReader

Description

Read rest of characters from character source.

ReadToEnd reads characters from the current position in the character source to its end, returning the result as a string.

This method is functionally identical to the Microsoft .NET method TextReader.ReadToEnd.

See Also

Code Examples