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()�_
)�_
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:
-
Checks that the severity of the loggingEvents is greater than or equal to the Threshold of this appender.
-
Checks that the IFilter chain accepts the loggingEvents.
-
Calls PreAppendCheck and checks that it returns
true
.
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