Add UpdateStarted event to signal when update download begins

This commit is contained in:
Stone_Red
2026-02-20 20:42:25 +01:00
parent 16d2f8ced4
commit 1dd95c7b10
3 changed files with 24 additions and 0 deletions
+5
View File
@@ -51,12 +51,17 @@ updater.Start();
...
updater.ProgressChanged += Updater_ProgressChanged;
updater.UpdateAvailible += Updater_UpdateAvailible;
updater.UpdateStarted += Updater_UpdateStarted;
}
private static void Updater_UpdateAvailible(string version, string additionalInformationUrl)
{
}
private static void Updater_UpdateStarted(string version)
{
}
private static void Updater_ProgressChanged(UpdateStep step, long? totalItems, long itemsProcessed, double? progressPercentage)
{
}