IDialogStack.Call<R>(IDialog<R>, ResumeAfter<R>) Method

Definition

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.

Applies to