Dev2.Settings.SettingsViewModel.ResetIsDirtyForChildren C# (CSharp) Method

ResetIsDirtyForChildren() private method

private ResetIsDirtyForChildren ( ) : void
return void
        void ResetIsDirtyForChildren()
        {
            if(SecurityViewModel != null)
            {
                SecurityViewModel.IsDirty = false;
                NotifyOfPropertyChange(() => SecurityHeader);
            }
            if (LogSettingsViewModel != null)
            {
                LogSettingsViewModel.IsDirty = false;
                NotifyOfPropertyChange(() => LogHeader);
            }
        }