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

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