CK.Plugins.ObjectExplorer.ViewModels.LogViewModels.VMLogConfig.Apply C# (CSharp) Method

Apply() private method

This methods calls the interceptor's Apply method
private Apply ( ) : void
return void
        internal void Apply()
        {
            ILogConfig l = ( (ILogConfig)this ).Clone();
            _hostConfiguration.ApplyConfiguration( l );
            _pluginRunner.ServiceHost.ApplyConfiguration();

            _isDirty = false;
            Config.User.Set( GLOBAL_LOGS, DoLog );

            foreach( VMLogServiceConfig s in Services )
            {
                s.UpdatePropertyBag();
                s.IsDirty = false;
            }
        }