Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions articles/dotnet/bot-builder-dotnet-dialogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ The bot will continue to increment `count` with each reply, until the user elect

As in the first example, the `MessageReceivedAsync` method is called when a new message is received.
This time though, the `MessageReceivedAsync` method evaluates the user's message before responding.
If the user's message is "reset", the built-in `Prompts.Confirm` prompt spawns a sub-dialog that
If the user's message is "reset", the built-in `PromptDialog.Confirm` prompt spawns a sub-dialog that
asks the user to confirm the count reset.
The sub-dialog has its own private state that does not interfere with the parent dialog's state.
When the user responds to the prompt, the result of the sub-dialog is passed to the `AfterResetAsync` method,
Expand Down Expand Up @@ -222,4 +222,4 @@ Dialogs manage conversation flow between a bot and a user. A dialog defines how

[autofac]: https://docs.microsoft.com/en-us/dotnet/api/microsoft.bot.builder.autofac.base?view=botbuilder-3.8

[chain]: https://docs.microsoft.com/en-us/dotnet/api/microsoft.bot.builder.dialogs.chain?view=botbuilder-3.8
[chain]: https://docs.microsoft.com/en-us/dotnet/api/microsoft.bot.builder.dialogs.chain?view=botbuilder-3.8