Dela via


Chain.SelectMany<T,C,R> Metod

Definition

När antecedent har slutförts IDialog<TResult> kör du nästa IDialog<TResult>och använder projektionen för att kombinera resultaten.

public static Microsoft.Bot.Builder.Dialogs.IDialog<R> SelectMany<T,C,R>(this Microsoft.Bot.Builder.Dialogs.IDialog<T> antecedent, Func<T,Microsoft.Bot.Builder.Dialogs.IDialog<C>> function, Func<T,C,R> projection);
static member SelectMany : Microsoft.Bot.Builder.Dialogs.IDialog<'T> * Func<'T, Microsoft.Bot.Builder.Dialogs.IDialog<'C>> * Func<'T, 'C, 'R> -> Microsoft.Bot.Builder.Dialogs.IDialog<'R>
<Extension()>
Public Function SelectMany(Of T, C, R) (antecedent As IDialog(Of T), function As Func(Of T, IDialog(Of C)), projection As Func(Of T, C, R)) As IDialog(Of R)

Typparametrar

T

Typ av föregående dialogruta.

C

Typ av mellanliggande dialogruta.

R

Typ av dialogruta.

Parametrar

antecedent
IDialog<T>

Den föregående dialogrutan IDialog<TResult>.

function
Func<T,IDialog<C>>

Fabriksmetoden för att skapa nästa dialogruta IDialog<TResult>.

projection
Func<T,C,R>

Projektionsfunktionen för kombinationen av de två dialogrutorna.

Returer

IDialog<R>

Resultatet IDialog<TResult>.

Gäller för