Writing a Microsoft Bot Framework v4 app in C#, .Net Core 2.2.
I want to implement a "where am i" command whose code examines the dialog stack and reports back to the user where they are in the conversation.
I'm using Waterfall dialogs with nested calls to BeginDialogAsync.
My waterfall step code can read WaterfallStepContext.Stack, but that's the local stack, for the current waterfall.
Is there an object available to waterfall step code that can see the global stack, with all current dialogs in the stack?