Web.HTTPApp.TWebActionItem.PathInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property PathInfo: string read GetPathInfo write SetPathInfo;

C++

__property System::UnicodeString PathInfo = {read=GetPathInfo, write=SetPathInfo};

Properties

Type Visibility Source Unit Parent
property published
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TWebActionItem

Description

Indicates the path portion of the Uniform Resource Identifier (URI) for which the action item handles requests.

Set PathInfo to the path portion of the URI for the target of any request messages serviced by the action item. TWebDispatcher matches action items to request messages by comparing PathInfo with the path portion of the URI specified as the target of the request. If the PathInfo properties match, and the MethodType matches, TWebDispatcher invokes the action item to respond to the request message.

If the action item has an associated content producer, the value of PathInfo is the name of the producer unless it is explicitly changed.

See Also