LoggerRepositorySkeleton ClassApache log4net™ SDK Documentation
Base implementation of ILoggerRepository
Inheritance Hierarchy

SystemObject
  log4net.RepositoryLoggerRepositorySkeleton
    log4net.Repository.HierarchyHierarchy

Namespace: log4net.Repository
Assembly: log4net (in log4net.dll) Version: 2.0.6.0-.NET 4.0
Syntax

public abstract class LoggerRepositorySkeleton : ILoggerRepository, 
	IFlushable

The LoggerRepositorySkeleton type exposes the following members.

Constructors

  NameDescription
Protected methodLoggerRepositorySkeleton
Default Constructor
Protected methodLoggerRepositorySkeleton(PropertiesDictionary)
Construct the repository using specific properties
Top
Properties

  NameDescription
Public propertyConfigurationMessages
Contains a list of internal messages captures during the last configuration.
Public propertyConfigured
Flag indicates if this repository has been configured.
Public propertyLevelMap
Get the level map for the Repository.
Public propertyName
The name of the repository
Public propertyPluginMap
The plugin map for this repository.
Public propertyProperties
Repository specific properties
Public propertyRendererMap
RendererMap accesses the object renderer map for this repository.
Public propertyThreshold
The threshold for all events in this repository
Top
Methods

  NameDescription
Public methodAddRenderer
Adds an object renderer for a specific class.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodExists
Test if logger exists
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFlush
Flushes all configured Appenders that implement IFlushable.
Public methodGetAppenders
Returns all the Appenders that are configured as an Array.
Public methodGetCurrentLoggers
Returns all the currently defined loggers in the repository
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetLogger
Return a new logger instance
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodLog
Log the logEvent through this repository.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnConfigurationChanged
Notify the registered listeners that the repository has had its configuration changed
Protected methodOnConfigurationReset
Notify the registered listeners that the repository has had its configuration reset
Protected methodOnShutdown
Notify the registered listeners that the repository is shutting down
Public methodRaiseConfigurationChanged
Raise a configuration changed event on this repository
Public methodResetConfiguration
Reset the repositories configuration to a default state
Public methodShutdown
Shutdown the repository
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Top
Events

  NameDescription
Public eventConfigurationChanged
Event to notify that the repository has had its configuration changed.
Public eventConfigurationReset
Event to notify that the repository has had its configuration reset.
Public eventShutdownEvent
Event to notify that the repository has been shutdown.
Top
Remarks

Default abstract implementation of the ILoggerRepository interface.

Skeleton implementation of the ILoggerRepository interface. All ILoggerRepository types can extend this type.

See Also

Reference