Cancelling Install update now in the AutomaticUpdater

Is an event raised when the user selects "Install Update Now"?I would like to prompt the user with a message box to save changes before the App closes. Ideally it would handle a Cancel option which would abort the "Install Update Now".

Simply use the FormClosing event like you normally would:

        private void Form1_FormClosing(object sender, FormClosingEventArgs e)        {            if (MessageBox.Show("Are you sure you want to close?", "Closing...", MessageBoxButtons.YesNo) == DialogResult.No)                e.Cancel = true;        }

The update install command is sent to wyUpdate only after FormClosing has passed.