Web.HTTPApp.TWebResponse.Version

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Version: string index 0 read GetStringVariable write SetStringVariable;

C++

__property System::UnicodeString Version = {read=GetStringVariable, write=SetStringVariable, index=0};

Properties

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

Description

Specifies the HTTP protocol version number that the web client is using.

Read Version to ensure that the properties set in the TWebResponse object will be understood by the Web client. The value of Version is taken from the ProtocolVersion property of the TWebRequest object.

For more information on the different HTTP protocol versions, see the Internet standards documentation.

See Also