NLog Logging Library

LoggingConfigurationReloaded Delegate

[This is preliminary documentation and subject to change.]

Represents a method that's invoked each time a logging configuration gets reloaded to signal either success or failure.

[Visual Basic]
Public Delegate Sub LoggingConfigurationReloaded( _
   ByVal succeeded As Boolean, _
   ByVal ex As Exception _
)
[C#]
public delegate void LoggingConfigurationReloaded(
   bool succeeded,
   Exception ex
);

Parameters

succeeded
Missing <param> documentation for succeeded
ex
Missing <param> documentation for ex

Requirements

Namespace: NLog

Assembly: NLog (in NLog.dll)

See Also

NLog Namespace