Web.HTTPApp.TAbstractWebRequestFile.GetFieldName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetFieldName: string; virtual; abstract;

C++

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

Properties

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

Description

Returns the value of the FieldName property.

GetFieldName is the protected read implementation for the FieldName property.

In TAbstractWebRequestFile, GetFieldName 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 FieldName property.

See Also