Builds the event log message.

Namespace:  CuttingEdge.Logging
Assembly:  CuttingEdge.Logging (in CuttingEdge.Logging.dll)

Syntax

Visual Basic (Declaration)
Protected Overridable Function BuildMailBody ( _
	entry As LogEntry _
) As String
C#
protected virtual string BuildMailBody(
	LogEntry entry
)
Visual C++
protected:
virtual String^ BuildMailBody(
	LogEntry^ entry
)
JavaScript
function buildMailBody(entry);

Parameters

entry
Type: CuttingEdge.Logging..::.LogEntry
The entry that will be used to build the message.

Return Value

The message.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionThrown when entry is null.

See Also