Web.HTTPApp.TWebRequest.InternalPathInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property InternalPathInfo: string read GetInternalPathInfo;

C++

__property System::UnicodeString InternalPathInfo = {read=GetInternalPathInfo};

Properties

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

Description

Returns the path info portion of the URL.

InternalPathInfo contains the path information portion of the URL, which identifies the destination of the message. This property generally contains the same information as PathInfo.To ensure cross-platform code compatibility, use InternalPathInfo instead of PathInfo.

Note: On Windows, this property varies slightly from PathInfo if the application has an embedded test server. In that case, information specific to the test server is contained in the InternalScriptName instead of the InternalPathInfo.

See Also