Open main menu

RAD Studio API Documentation β

Web.HTTPApp.TAbstractWebRequestFile.GetFileName

Delphi

function GetFileName: string; virtual; abstract;

C++

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

Properties

Type Visibility Source Unit Parent
function protected
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TAbstractWebRequestFile

Description

Returns the value of the FileName property.

GetFileName is the protected read implementation for the FileName property.

In TAbstractWebRequestFile, GetFileName is abstract or, in C++ terminology, pure virtual, meaning it has no implementation. Descendant classes must override this method to provide an implementation for the FileName property.

See Also