ActivationProcessedEventArgs.cs 633 B

1234567891011121314151617181920
  1. namespace Caliburn.Micro.Core {
  2. using System;
  3. /// <summary>
  4. /// Contains details about the success or failure of an item's activation through an <see cref="IConductor"/>.
  5. /// </summary>
  6. public class ActivationProcessedEventArgs : EventArgs {
  7. /// <summary>
  8. /// The item whose activation was processed.
  9. /// </summary>
  10. public object Item;
  11. /// <summary>
  12. /// Gets or sets a value indicating whether the activation was a success.
  13. /// </summary>
  14. /// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
  15. public bool Success;
  16. }
  17. }