Set of route matching options
Source position: httproute.pp line 48
type TRouteOptions = set of ( |
||
roCaseSensitive, |
|
Enable case-sensitive pattern matching |
roEmptyMatchesAll |
|
Allow empty patterns to match all requests |
); |
TRouteOptions is a set type containing TRouteOption values. It allows combining multiple route matching options for flexible route configuration.
|
Route matching options enumeration |