Microsoft.ManagementConsole.FormView.Synchronize C# (CSharp) Method

Synchronize() private method

private Synchronize ( ) : void
return void
        private void Synchronize()
        {
            if (this._containerControl != null)
            {
                ISnapInPlatform snapInPlatform = SnapInBase.SnapInInstance.SnapInPlatform;
                if (snapInPlatform == null)
                {
                    throw new InvalidOperationException(Microsoft.ManagementConsole.Internal.Utility.LoadResourceString(Microsoft.ManagementConsole.Internal.Strings.ExceptionCommonSnapInPlatformIsNull));
                }
                SetFormViewControlCommand command = new SetFormViewControlCommand();
                command.ViewInstanceId = base.ViewInstanceId;
                command.Handle = this._containerControl.Handle;
                snapInPlatform.ProcessCommand(command);
            }
        }