Esempio n. 1
0
        private void IssuePathChangeEvent()
        {
            PathChangedEventArgs e = new PathChangedEventArgs()
            {
                Path = SiteSettingsRootPath
            };

            RaiseOnSiteRootPathChangedEvent(e);
        }
Esempio n. 2
0
 protected virtual void RaiseOnSiteRootPathChangedEvent(PathChangedEventArgs e)
 {
     OnSiteRootPathChanged?.Invoke(this, e);
 }