I\'m looking at the core-CreateNewConversation sample in the Bot builder examples repo (https://github.com/Microsoft/BotBuilder-Samples). There is a method available on IDialogS
In reality, it was just moved from the IDialogStack
class to the IDialogTask
class.
Instead of doing:
IDialogStack stack = stack = scope.Resolve();
you have to do
IDialogTask task = scope.Resolve();
then you can just do:
task.Call(interruption, null);
await task.PollAsync(token);
There is a pull request that is updating the sample taking into account this change.