HttpModule Class

HttpServer.dll

A HttpModule can be used to serve urls. The module itself decides if it should serve a url or not. In this way, you can get a very flexible http app since you can let multiple modules serve almost similiar urls.

Namespace:  HttpServer.HttpModules
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public abstract class HttpModule
Visual Basic (Declaration)
Public MustInherit Class HttpModule
Visual C++
public ref class HttpModule abstract

Remarks

Throw UnauthorizedException if you are using a AuthenticationModule and want to prompt for username/password.

Inheritance Hierarchy

See Also