NextDelegate<T> Delegate

Definition

A delegate for deciding on the next step in the form to execute.

public delegate Microsoft.Bot.Builder.FormFlow.Advanced.NextStep NextDelegate<T>(object value, T state) where T : class;
type NextDelegate<'T (requires 'T : null)> = delegate of obj * 'T -> NextStep
Public Delegate Function NextDelegate(Of T)(value As Object, state As T) As NextStep 

Type Parameters

T

Form state type.

Parameters

value
Object

Value just entered for field.

state
T

Current state object.

Return Value

Applies to