Unit 'httproute' Package
[Overview][Constants][Types][Classes][Procedures and functions][Index] [#fcl]

TRouteMethod

HTTP method enumeration for routing

Declaration

Source position: httproute.pp line 39

type TRouteMethod = (

  rmUnknown,

  

Unknown or unspecified HTTP method

  rmAll,

  

Matches all HTTP methods

  rmGet,

  

HTTP GET method

  rmPost,

  

HTTP POST method

  rmPut,

  

HTTP PUT method

  rmDelete,

  

HTTP DELETE method

  rmOptions,

  

HTTP OPTIONS method

  rmHead,

  

HTTP HEAD method

  rmTrace

  

HTTP TRACE method

);

Description

TRouteMethod defines the HTTP methods that can be matched by routes. It includes common HTTP methods like GET, POST, PUT, DELETE, and others.

See also

THTTPRoute

  

Base HTTP route class


Documentation generated on: Aug 28 2026 Report a problem on this page