Web.HTTPApp.TWebResponse.Date

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Date: TDateTime index 0 read GetDateVariable write SetDateVariable;

C++

__property System::TDateTime Date = {read=GetDateVariable, write=SetDateVariable, index=0};

Properties

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

Description

Indicates the time and date when the HTTP response message is sent to the web client.

Set Date to the current date and time immediately before sending the HTTP response message to the web client. The Web client uses Date to determine the age of the information returned.

Date 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