diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-12-15 16:52:30 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-12-15 16:52:30 +0200 |
| commit | 66be0fdd579050375421ad54dc25cf35bac0845c (patch) | |
| tree | 429ebbf390862a2cc1dcad40aecb96a1399c7ab0 /Software/Visual_Studio/PPC/Tango.PPC.Common/Application | |
| parent | 97513f619e9778e8409831db04b29b0dcf53f1b9 (diff) | |
| download | Tango-66be0fdd579050375421ad54dc25cf35bac0845c.tar.gz Tango-66be0fdd579050375421ad54dc25cf35bac0845c.zip | |
Implemented several fallbacks to PPC update failure !
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Application')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs index fd91bfd50..a9d4e7c3a 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs @@ -46,6 +46,11 @@ namespace Tango.PPC.Common.Application event EventHandler SystemRestartRequired; /// <summary> + /// Occurs when the updater utility has failed to perform the last update. + /// </summary> + event EventHandler UpdaterFailed; + + /// <summary> /// Occurs when the application has encountered an error when initializing. /// </summary> event EventHandler<Exception> ApplicationInitializationError; @@ -66,6 +71,11 @@ namespace Tango.PPC.Common.Application bool IsAfterUpdate { get; } /// <summary> + /// Gets a value indicating whether the updater utility has failed to perform the last update. + /// </summary> + bool IsUpdateFailed { get; } + + /// <summary> /// Shutdown the application. /// </summary> void ShutDown(); |
