I created started a Scheduled task with
Schedule.Every(TimeSpan.FromMinutes(1)).Action("TaskName",TaskMethod);
Now if my saga's Handle() gets invoked by an incoming message which does MarkAsComplete(), the scheduled task that I created does not get cancelled.
How can I cancel the task?