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 loggingEvents�As�LoggingEvent()�_
)�_
����Implements�IBulkAppender.DoAppend
[C#]
public�void�DoAppend(
���LoggingEvent[]loggingEvents
);

Parameters

loggingEvents
The array of events to log.

Implements

IBulkAppender.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 loggingEvents will be passed to the Append method.

See Also

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