Prompt<T> 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
定義提示對話框的核心行為。
public abstract class Prompt<T> : Microsoft.Bot.Builder.Dialogs.Dialog
type Prompt<'T> = class
inherit Dialog
Public MustInherit Class Prompt(Of T)
Inherits Dialog
類型參數
- T
提示傳回的值型別。
- 繼承
- 衍生
備註
當提示結束時,它應該會傳回 T
物件,代表提示的值。 使用 Add(Dialog) 或 AddDialog(Dialog),分別將提示新增至對話框集或元件對話方塊。 使用 PromptAsync(String, PromptOptions, CancellationToken) 或 BeginDialogAsync(String, Object, CancellationToken) 啟動提示。 如果您從 WaterfallDialog中的 WaterfallStep 啟動提示,則瀑布的下一個步驟中將會提供提示結果。
建構函式
Prompt<T>(String, PromptValidator<T>) |
屬性
Id |
取得或設定對話框的識別碼。 (繼承來源 Dialog) |
Source |
取得 cref=“SourceRange”/>的資訊。 (繼承來源 Dialog) |
TelemetryClient |
取得或設定要用於記錄的 IBotTelemetryClient。 (繼承來源 Dialog) |
方法
擴充方法
RunAsync(Dialog, ITurnContext, IStatePropertyAccessor<DialogState>, CancellationToken) |
建立對話堆疊並啟動對話,並將它推送至堆疊。 |