ExceptionThrown Event

HttpServer.dll

Let's to receive unhandled exceptions from the threads.

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

Syntax

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

Remarks

Exceptions will be thrown during debug mode if this event is not used, exceptions will be printed to console and supressed during release mode.

See Also