NextDelegate<T> Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.