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

Definition

Post to the user the result of a IDialog<TResult>.

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

Type Parameters

T

The type of the dialog.

Parameters

antecedent
IDialog<T>

The antecedent IDialog<TResult>.

Returns

IDialog<T>

The antecedent dialog.

Applies to