Microsoft.ManagementConsole.FormView.Synchronize C# (CSharp) 메소드

Synchronize() 개인적인 메소드

private Synchronize ( ) : void
리턴 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);
            }
        }