aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2019-12-07 22:46:37 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2019-12-07 22:46:37 +0200
commit00f7facd947e0e8ce05a43d4f9d036e8f9a6a69e (patch)
treee8b839ab42dbb7fc05e7398a9fb1b3e4941fa6c1 /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs
parenta6e6af346bf160b4a83163a6f1b268920cf2005c (diff)
downloadTango-00f7facd947e0e8ce05a43d4f9d036e8f9a6a69e.tar.gz
Tango-00f7facd947e0e8ce05a43d4f9d036e8f9a6a69e.zip
Implemented auto check for update notification on PPC...
Related Work Items: #1460
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs
index 299e18e57..3655aa462 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs
@@ -11,6 +11,19 @@ namespace Tango.PPC.Common.MachineUpdate
{
public interface IMachineUpdateManager
{
+ /// <summary>
+ /// Occurs when an application update is available.
+ /// </summary>
+ event EventHandler<CheckForUpdateResponse> UpdateAvailable;
+
+ /// <summary>
+ /// Gets or sets a value indicating whether to automatically check for new application updates.
+ /// </summary>
+ bool AutoCheckForUpdates { get; set; }
+
+ /// <summary>
+ /// Gets the current machine update progress status.
+ /// </summary>
MachineUpdateProgress Status { get; }
/// <summary>