Apache log4net� SDK Documentation - Microsoft .NET Framework 4.0

AppenderSkeleton.DoAppend�Method�(LoggingEvent)

Performs threshold checks and invokes filters before delegating actual logging to the subclasses specific Append method.

[Visual�Basic]
NotOverridable�Overloads�Public�Sub�DoAppend( _
���ByVal loggingEvent�As�LoggingEvent�_
)�_
����Implements�IAppender.DoAppend
[C#]
public�void�DoAppend(
���LoggingEventloggingEvent
);

Parameters

loggingEvent
The event to log.

Implements

IAppender.DoAppend

Remarks

This method cannot be overridden by derived classes. A derived class should override the Append method which is called by this method.

The implementation of this method is as follows:

If all of the above steps succeed then the loggingEvent will be passed to the abstract Append method.

See Also

AppenderSkeleton Class | log4net.Appender Namespace | AppenderSkeleton.DoAppend Overload List