Web.HTTPApp.TAbstractWebSession.GetValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetValue(const AName: string): Variant; virtual; abstract;

C++

virtual System::Variant __fastcall GetValue(const System::UnicodeString AName) = 0 ;

Properties

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

Description

Returns the value associated with a specified name.

GetValue is the protected read implementation of the Values property.

AName is the name of the value to return.

In TAbstractWebSession, GetValue 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 Values property.

See Also