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

OnSelectionActionsChanged() private method

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