Compartir a través de


Chain.While<T> Método

Definición

Cree un IDialog<TResult> objeto que represente un bucle while.

public static Microsoft.Bot.Builder.Dialogs.IDialog<T> While<T> (this Microsoft.Bot.Builder.Dialogs.IDialog<T> initial, Func<T,Microsoft.Bot.Builder.Dialogs.IDialog<bool>> test, Func<T,Microsoft.Bot.Builder.Dialogs.IDialog<T>> body);
static member While : Microsoft.Bot.Builder.Dialogs.IDialog<'T> * Func<'T, Microsoft.Bot.Builder.Dialogs.IDialog<bool>> * Func<'T, Microsoft.Bot.Builder.Dialogs.IDialog<'T>> -> Microsoft.Bot.Builder.Dialogs.IDialog<'T>
<Extension()>
Public Function While(Of T) (initial As IDialog(Of T), test As Func(Of T, IDialog(Of Boolean)), body As Func(Of T, IDialog(Of T))) As IDialog(Of T)

Parámetros de tipo

T

Tipo del valor.

Parámetros

initial
IDialog<T>

Valor si test nunca es true.

test
Func<T,IDialog<Boolean>>

Prueba para escribir el bucle bodywhile .

body
Func<T,IDialog<T>>

Cuerpo del bucle while.

Devoluciones

IDialog<T>

Cero o el último valor devuelto por del body bucle while.

Se aplica a