CoroutineExecutionContext.cs 576 B

12345678910111213141516171819202122
  1. namespace Caliburn.Micro.Core {
  2. /// <summary>
  3. /// The context used during the execution of a Coroutine.
  4. /// </summary>
  5. public class CoroutineExecutionContext {
  6. /// <summary>
  7. /// The source from which the message originates.
  8. /// </summary>
  9. public object Source;
  10. /// <summary>
  11. /// The view associated with the target.
  12. /// </summary>
  13. public object View;
  14. /// <summary>
  15. /// The instance on which the action is invoked.
  16. /// </summary>
  17. public object Target;
  18. }
  19. }