IWebServer Events |
The IWebServer type exposes the following members.
Name | Description | |
---|---|---|
AfterRequestReceived |
Raised on a background thread when the web server receives a request from a browser. Called
after RequestReceived is raised.
| |
AuthenticationRequired |
Raised when the AuthenticationScheme is not 'None' and the browser has supplied credentials that need testing.
| |
BeforeRequestReceived |
Raised on a background thread when the web server receives a request from a browser. Called
before RequestReceived is raised.
| |
ExceptionCaught |
Raised when an exception is caught on the background thread. The background thread should not
pass ThreadAbortException through this.
(Inherited from IBackgroundThreadExceptionCatcher.) | |
ExternalAddressChanged |
Raised when the ExternalAddress property changes.
| |
OnlineChanged |
Raised when the Online property changes state.
| |
RequestFinished |
Raised after a response has been sent and the request completely closed down. The parameter is
the UniqueId of the ResponseSentEventArgs original created for the request.
| |
RequestReceived |
Raised on a background thread when the web server receives a request from a browser.
| |
ResponseSent |
Raised on a background thread when the web server responds to a request.
|