Web.HTTPApp.TWebResponse.LastModified

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property LastModified: TDateTime index 2 read GetDateVariable write SetDateVariable;

C++

__property System::TDateTime LastModified = {read=GetDateVariable, write=SetDateVariable, index=2};

Properties

Type Visibility Source Unit Parent
property public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TWebResponse

Description

Indicates the date and time that the value of the Content property was last updated.

Set LastModified to indicate the last time the Content of the response was modified. This allows web clients to determine whether their local version of that information is up-to-date. When the HTTP request is a HEAD message, this may allow the web client and server to skip a potentially expensive transfer of information.

The value of LastModified is specified in the local time of the machine. The HTTP response message translates this value to the date encoding used by HTTP.

LastModified is represented using the TDateTime type. The integral part of a TDateTime value is the number of days that have passed since December 30, 1899. The fractional part of a TDateTime value is the fraction of a 24-hour day that has elapsed.

See Also