Sic04/FrameworkLocal/UIClient/Caliburn.Micro/Core/ActivationProcessedEventArg...

20 lines
633 B
C#
Raw Normal View History

2022-09-19 09:16:33 +08:00
namespace Caliburn.Micro.Core {
using System;
/// <summary>
/// Contains details about the success or failure of an item's activation through an <see cref="IConductor"/>.
/// </summary>
public class ActivationProcessedEventArgs : EventArgs {
/// <summary>
/// The item whose activation was processed.
/// </summary>
public object Item;
/// <summary>
/// Gets or sets a value indicating whether the activation was a success.
/// </summary>
/// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
public bool Success;
}
}