AppenderSkeleton Append Method ( LoggingEvent )Apache log4net™ SDK Documentation
Append a bulk array of logging events.

Namespace: log4net.Appender
Assembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax

protected virtual void Append(
	LoggingEvent[] loggingEvents
)

Parameters

loggingEvents
Type:  log4net.Core LoggingEvent 
the array of logging events
Remarks

This base class implementation calls the [M:Append(LoggingEvent)] method for each element in the bulk array.

A sub class that can better process a bulk array of events should override this method in addition to [M:Append(LoggingEvent)].

See Also