예제 #1
0
파일: LogFactory.cs 프로젝트: HUkiah/CLog
 protected virtual void OnConfigurationReloaded(LoggingConfigurationReloadedEventArgs e)
 {
     ConfigurationReloaded?.Invoke(this, e);
 }
예제 #2
0
 private static void LogManager_ConfigurationReloaded(object sender, NLog.Config.LoggingConfigurationReloadedEventArgs e)
 {
     // Raise the event in a thread-safe manner using the ?. operator.
     ConfigurationReloaded?.Invoke(sender, e);
 }
예제 #3
0
 public ApplicationEvents OnConfigurationReloaded()
 {
     ConfigurationReloaded?.Invoke(this, new EventArgs());
     return(this);
 }