Replies: 1 comment 3 replies
-
You can catch if from your agent.LocalOrchestrator.OnSessionEnd(sessionEndArgs => {
}); You can even catch it from the progress = new SynchronousProgress<ProgressArgs>(s =>
{
Console.WriteLine($"{s.PogressPercentageString}:\t{s.Source}:\t{s.Message}");
if (s.Context.SyncStage == SyncStage.EndSession)
{
Console.WriteLine("Reach End of Session");
}
});
Is it what you need ? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to get syncStage=EndSession?
Beta Was this translation helpful? Give feedback.
All reactions