namespace Caliburn.Micro.Core { using System; /// /// Contains details about the success or failure of an item's activation through an . /// public class ActivationProcessedEventArgs : EventArgs { /// /// The item whose activation was processed. /// public object Item; /// /// Gets or sets a value indicating whether the activation was a success. /// /// true if success; otherwise, false. public bool Success; } }