StateChangeEventArgs.cs
16 lines
| 420 B
| text/x-csharp
|
CSharpLexer
cin
|
r289 | using System; | ||
namespace Implab.Components | ||||
{ | ||||
public class StateChangeEventArgs : EventArgs { | ||||
/// <summary> | ||||
/// The error information if any | ||||
/// </summary> | ||||
public Exception LastError { get; set; } | ||||
/// <summary> | ||||
/// The state of the service corresponding to this event | ||||
/// </summary> | ||||
public ExecutionState State { get; set; } | ||||
} | ||||
} | ||||