NumberPrompt<T> 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
提示用户输入数字。
public class NumberPrompt<T> : Microsoft.Bot.Builder.Dialogs.Prompt<T> where T : struct
type NumberPrompt<'T (requires 'T : struct)> = class
inherit Prompt<'T (requires 'T : struct)>
Public Class NumberPrompt(Of T)
Inherits Prompt(Of T)
类型参数
- T
所需的输入类型。
- 继承
注解
数字提示当前支持以下类型:Single、Int32、Int64、Double和 Decimal。
构造函数
NumberPrompt<T>(String, PromptValidator<T>, String) |
初始化 NumberPrompt<T> 类的新实例。 |
属性
DefaultLocale |
获取或设置用于确定提示的语言特定行为的默认区域设置。 |
Id |
获取或设置对话框的 ID。 (继承自 Dialog) |
Source |
获取 cref=“SourceRange”/>的信息。 (继承自 Dialog) |
TelemetryClient |
获取或设置用于日志记录的 IBotTelemetryClient。 (继承自 Dialog) |
方法
扩展方法
RunAsync(Dialog, ITurnContext, IStatePropertyAccessor<DialogState>, CancellationToken) |
创建对话堆栈并启动对话,将其推送到堆栈上。 |