Microsoft.ManagementConsole.View.SynchronizeModifiedState C# (CSharp) Method

SynchronizeModifiedState() private method

private SynchronizeModifiedState ( ) : void
return void
        private void SynchronizeModifiedState()
        {
            ISnapInPlatform snapInPlatform = this.SnapIn.SnapInPlatform;
            if (snapInPlatform == null)
            {
                throw Microsoft.ManagementConsole.Internal.Utility.CreateClassNotInitializedException("SnapIn", "SynchronizeModifiedState");
            }
            UpdateViewModifiedStateCommand command = new UpdateViewModifiedStateCommand();
            command.ViewInstanceId = this.ViewInstanceId;
            command.IsModified = this._isModified;
            snapInPlatform.ProcessCommand(command);
        }