{WebData}
Object to store all HTTP request-reply data and pass between handlers and server
Attributes:
- route: route name in the server route table (R)
- rawuri: full URL string (R)
- uri: URL hostname (R)
- method: GET, POST, etc (R)
- type: content-type (R/W)
- length: size of request data (R)
- path: array with URL path splitted by slashes (R)
- param: srtingstring http param list like ?key=value (R)
- headers: srtingstring http headers (R/W)
- rawdtata: ubyte[] POST data of binary types (R/W)
- json: POST data of json type (R/W)
- text: POST data of text-like types (R/W)
- status: enum http_status (W)
{WebData} Object to store all HTTP request-reply data and pass between handlers and server Attributes: - route: route name in the server route table (R) - rawuri: full URL string (R) - uri: URL hostname (R) - method: GET, POST, etc (R) - type: content-type (R/W) - length: size of request data (R) - path: array with URL path splitted by slashes (R) - param: srtingstring http param list like ?key=value (R) - headers: srtingstring http headers (R/W) - rawdtata: ubyte[] POST data of binary types (R/W) - json: POST data of json type (R/W) - text: POST data of text-like types (R/W) - status: enum http_status (W)