WaterfallStep 代理人
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
瀑布步驟的委派定義。 這是由應用程式程式碼所實作。
public delegate System.Threading.Tasks.Task<Microsoft.Bot.Builder.Dialogs.DialogTurnResult> WaterfallStep(WaterfallStepContext stepContext, CancellationToken cancellationToken);
type WaterfallStep = delegate of WaterfallStepContext * CancellationToken -> Task<DialogTurnResult>
Public Delegate Function WaterfallStep(stepContext As WaterfallStepContext, cancellationToken As CancellationToken) As Task(Of DialogTurnResult)
參數
- stepContext
- WaterfallStepContext
此瀑布式對話方塊的 WaterfallStepCoNtext。
- cancellationToken
- CancellationToken
取消語彙基元。
傳回值
Task, DialogTurnResult 表示非同步作業。