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

SynchronizeGlobalActions() private method

private SynchronizeGlobalActions ( ) : void
return void
        private void SynchronizeGlobalActions()
        {
            ISnapInPlatform snapInPlatform = this.SnapIn.SnapInPlatform;
            if (snapInPlatform == null)
            {
                throw Microsoft.ManagementConsole.Internal.Utility.CreateClassNotInitializedException("SnapIn", "SynchronizeGlobalActions");
            }
            UpdateViewActionsCommand command = new UpdateViewActionsCommand();
            command.ViewInstanceId = this.ViewInstanceId;
            command.ActionType = ViewActionType.Global;
            command.Data = this.ActionsPaneItems.Data;
            snapInPlatform.ProcessCommand(command);
        }