Example #1
0
        private void DoSectionChangedEvent(string sectionName)
        {
            _log.Debug($"Triggering SectionChanged event for: {sectionName}");

            OnSectionChanged?.Invoke(this, new ConfigSectionChangedEventArgs()
            {
                SectionName = sectionName
            });
        }
Example #2
0
 public static void ChangeSection()
 {
     OnSectionChanged?.Invoke();
 }