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

BatchSelectionDataUpdates() private method

private BatchSelectionDataUpdates ( bool begin ) : void
begin bool
return void
        internal void BatchSelectionDataUpdates(bool begin)
        {
            ISnapInPlatform snapInPlatform = this.SnapIn.SnapInPlatform;
            if (snapInPlatform == null)
            {
                throw Microsoft.ManagementConsole.Internal.Utility.CreateClassNotInitializedException("SnapIn", "BatchSelectionDataUpdates");
            }
            BatchSelectionDataUpdatesCommand command = new BatchSelectionDataUpdatesCommand();
            command.ViewInstanceId = this.ViewInstanceId;
            command.Begin = begin;
            snapInPlatform.ProcessCommand(command);
        }