"Checking Failed" event triggering.

Is there a way to pull the error message from this event getting triggered? I'm trying to troubleshoot the updater for a few people but I need more information other than "Failed to check for updates".

I added code to pop up a message box if the event happens in c#. What can I use to show the exact error message?

If you're showing the AutomaticUpdater control on your form then the user can just click the control and click "View error details".

Programmatically you can get the error message by using the "FailArgs" parameter of your event handler. For example:

void automaticUpdater_CheckingFailed(object sender, wyDay.Controls.FailArgs e){    MessageBox.Show(e.ErrorMessage, e.ErrorTitle);}