Sic.Framework/MECF.Framework.UI.Client/Caliburn.Micro/Core/ResultCompletionEventArgs.cs

21 lines
635 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace Caliburn.Micro.Core {
using System;
/// <summary>
/// The event args for the Completed event of an <see cref="IResult"/>.
/// </summary>
public class ResultCompletionEventArgs : EventArgs {
/// <summary>
/// Gets or sets the error if one occurred.
/// </summary>
/// <value>The error.</value>
public Exception Error;
/// <summary>
/// Gets or sets a value indicating whether the result was cancelled.
/// </summary>
/// <value><c>true</c> if cancelled; otherwise, <c>false</c>.</value>
public bool WasCancelled;
}
}