OnAuthenticationRequired Event

HttpServer.dll

Let's you decide on a system level if authentication is requried. You can also decide if authentication is required in each HttpModule.

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

Syntax

C#
public event AuthRequiredDelegate OnAuthenticationRequired
Visual Basic (Declaration)
Public Event OnAuthenticationRequired As AuthRequiredDelegate
Visual C++
public:
 event AuthRequiredDelegate^ OnAuthenticationRequired {
	void add (AuthRequiredDelegate^ value);
	void remove (AuthRequiredDelegate^ value);
}

See Also