diff options
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs')
| -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(); |
