StateChangeEventArgs.cs
16 lines
| 420 B
| text/x-csharp
|
CSharpLexer
cin
|
r205 | using System; | ||
namespace Implab.Components | ||||
{ | ||||
cin
|
r207 | public class StateChangeEventArgs : EventArgs { | ||
cin
|
r205 | /// <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; } | ||||
} | ||||
} | ||||