Back to product page
- Introduction
- License agreement
- Getting Started
- Enumerations
- Objects
- How to get support?
- Technical information
- Fast notifications interface
- Error list
Request property
Returns reference to current request.
Type
WebRequest objectSyntax
- Basic
object.Request
The Request(object) syntax has these parts:
The Request(object) syntax has these parts:
object | An expression evaluating to an object of type WebUser |
Remarks
Request property returns reference to WebRequest object. It holds all information known about user's request - one you should evaluate and return proper response back to the client.There can be only one request at a time per user's connection. It is possible, however, that client sends pipelined requests. If so, wodWebServer will wait for you to evaluate previous request before passing new one to you - and creating new Request/Response objects. When new request arrives for you to evaluate it (and send response back), RequestDone event will fire.