WriteLogHandler Delegate

HttpServer.dll

A delegate that helps us keep track of errors in the system.

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

Syntax

C#
public delegate void WriteLogHandler(
	Object source,
	LogPrio priority,
	string message
)
Visual Basic (Declaration)
Public Delegate Sub WriteLogHandler ( _
	source As Object, _
	priority As LogPrio, _
	message As String _
)
Visual C++
public delegate void WriteLogHandler(
	Object^ source, 
	LogPrio priority, 
	String^ message
)

Parameters

source
Type: System..::.Object
class that writes the log entry.
priority
Type: HttpServer..::.LogPrio
priority for the message
message
Type: System..::.String
log message

See Also