NLog Logging Library

LoggerReconfiguredDelegate Delegate

[This is preliminary documentation and subject to change.]

Represents a method that's invoked each time a Logger configuration changes.

[Visual Basic]
Public Delegate Sub LoggerReconfiguredDelegate( _
   ByVal logger As Logger _
)
[C#]
public delegate void LoggerReconfiguredDelegate(
   Logger logger
);

Parameters

logger
logger that was reconfigured

Remarks

'Reconfiguring' a logger means rebuilding the list of targets and filters that will be invoked on logging. This may or may not influence the result returned by IsXXXXEnabled properties.

Requirements

Namespace: NLog

Assembly: NLog (in NLog.dll)

See Also

NLog Namespace