Chain.Loop<T>(IDialog<T>) Method

Definition

Loop the IDialog<TResult> forever.

public static Microsoft.Bot.Builder.Dialogs.IDialog<T> Loop<T> (this Microsoft.Bot.Builder.Dialogs.IDialog<T> antecedent);
static member Loop : Microsoft.Bot.Builder.Dialogs.IDialog<'T> -> Microsoft.Bot.Builder.Dialogs.IDialog<'T>
<Extension()>
Public Function Loop(Of T) (antecedent As IDialog(Of T)) As IDialog(Of T)

Type Parameters

T

Parameters

antecedent
IDialog<T>

The antecedent IDialog<TResult>.

Returns

IDialog<T>

The looping dialog.

Applies to