Click or drag to resize
UpdateControllerUpdateInteractive Method (IWin32Window)
Uses built-in dialogs to walk the user through an entire update process. The dialogs will be shown in front of the specified object.

Namespace: Kjs.AppLife.Update.Controller
Assembly: Kjs.AppLife.Update.Controller (in Kjs.AppLife.Update.Controller.dll) Version: 5.1.0.9 (5.1.0.9)
Syntax
public void UpdateInteractive(
	IWin32Window dialogOwner
)

Parameters

dialogOwner
Type: System.Windows.FormsIWin32Window
An implementation of IWin32Window that will own the modal dialog.
Exceptions
ExceptionCondition
InvalidOperationExceptionIsBusy is .
ObjectDisposedException

The UpdateController has been disposed.

Remarks

This method combines the functionality of ShowCheckForUpdateDialog and ShowDownloadUpdateDialog and adds a step to automatically attempt to apply the update and display any error that occurs when doing so to the user.

This method displays a "Check for updates" dialog. If an update is found and the user chooses to get it, this method will automatically download it and display a progress dialog. If the download succeeds and is not cancelled by the user, this method will apply the update. If the update is successfully applied, the application will shut down.

If an exception is thrown during any of these steps, a message will be shown to the user. The user can click a button to view the message of the exception and any inner exceptions by clicking a "Show details" button.

See Also