Web.HTTPApp.TWebRequest.TranslateURI

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function TranslateURI(const URI: string): string; virtual; abstract;

C++

virtual System::UnicodeString __fastcall TranslateURI(const System::UnicodeString URI) = 0 ;

Properties

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

Description

Provides the abstract (pure virtual) prototype for a method to translate a Uniform Resource Identifier (URI) into an internal representation of a location on the server.

Descendants of TWebRequest implement TranslateURI. TranslateURI is used to translate the URI specified in a client request into a format that can be used by the server application. TranslateURI is not relevant to CGI applications.

Note: On Windows, the internal format varies, depending on whether the server application is an ISAPI or NSAPI application.

See Also