Interface for appenders that support bulk logging.
            
Namespace: log4net.Appender
Assembly: log4net (in log4net.dll) Version: 2.0.8.0-.NET 4.0
Syntax
The IBulkAppender type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| Name | 
            Gets or sets the name of this appender.
              (Inherited from IAppender.) | 
Methods
| Name | Description | |
|---|---|---|
| Close | 
            Closes the appender and releases resources.
              (Inherited from IAppender.) | |
| DoAppend(LoggingEvent) | 
            Log the logging event in Appender specific way.
              (Inherited from IAppender.) | |
| DoAppend(LoggingEvent) | 
            Log the array of logging events in Appender specific way.
              | 
Remarks
This interface extends the IAppender interface to support bulk logging of LoggingEvent objects. Appenders should only implement this interface if they can bulk log efficiently.
See Also