Back to product page
- Introduction
- License agreement
- Classes
- Enumerations
- Exceptions
- WeOnlyDo.Server.WebServer
- WeOnlyDo.Server.WebHeader
- WeOnlyDo.Server.WebHeaders
- WeOnlyDo.Server.WebRequest
- WeOnlyDo.Server.WebResponse
- WeOnlyDo.Server.WebSessions
- WeOnlyDo.Server.WebSessionVar
- WeOnlyDo.Server.WebSessionVars
- WeOnlyDo.Server.WebUpload
- WeOnlyDo.Server.WebUploads
- WeOnlyDo.Server.WebUser
- WeOnlyDo.Server.WebUsers
- How to get support?
WebDelivery enumeration
Defines if wodWebServer.NET will return response on client's request automatically or not.
Remarks
This enumeration defines if wodWebServer.NET will return response on client's request automatically (immediately after RequestDone event completes), or you will have to manually call SendResponse method. If you plan to serve static HTML pages, it is convenient to use Automatic delivery method. Even if you will create pages on the fly, but still inside RequestDone event (but please!, do it fast!), you can still set it to Automatic.However, if you plan to create web page that will consume some time, you will choose Manual delivery - so you can create page with ease (such as, through CGI script), and then send it to the client using SendRequest method.
Members
Member | Description |
---|---|
Automatic | Send response automatically. |
Manual | Send response manually. |