WrapperMap ClassApache log4net™ SDK Documentation
Maps between logger objects and wrapper objects.
Inheritance Hierarchy

OnlineSystem Object
  log4net.Core WrapperMap

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

public class WrapperMap
Remarks

This class maintains a mapping between ILogger objects and ILoggerWrapper objects. Use the GetWrapper(ILogger) method to lookup the ILoggerWrapper for the specified ILogger.

New wrapper instances are created by the CreateNewWrapperObject(ILogger) method. The default behavior is for this method to delegate construction of the wrapper to the WrapperCreationHandler delegate supplied to the constructor. This allows specialization of the behavior without requiring subclassing of this type.

See Also