IDialogStack.Call<R>(IDialog<R>, ResumeAfter<R>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Call a child dialog and add it to the top of the stack.
public void Call<R> (Microsoft.Bot.Builder.Dialogs.IDialog<R> child, Microsoft.Bot.Builder.Dialogs.ResumeAfter<R> resume);
abstract member Call : Microsoft.Bot.Builder.Dialogs.IDialog<'R> * Microsoft.Bot.Builder.Dialogs.ResumeAfter<'R> -> unit
Public Sub Call(Of R) (child As IDialog(Of R), resume As ResumeAfter(Of R))
Type Parameters
- R
The type of result expected from the child dialog.
Parameters
- child
- IDialog<R>
The child dialog.
- resume
- ResumeAfter<R>
The method to resume when the child dialog has completed.