IDialogSystem 接口

定义

对话系统表示对话任务及其事件循环的顶级接口。

public interface IDialogSystem : Microsoft.Bot.Builder.Base.IEventLoop, Microsoft.Bot.Builder.Base.IEventProducer<Microsoft.Bot.Connector.IActivity>, Microsoft.Bot.Builder.Dialogs.Internals.IDialogTasks
type IDialogSystem = interface
    interface IDialogTasks
    interface IEventLoop
    interface IEventProducer<IActivity>
Public Interface IDialogSystem
Implements IDialogTasks, IEventLoop, IEventProducer(Of IActivity)
派生
实现

属性

DialogTasks

IDialogTask 的列表

(继承自 IDialogTasks)

方法

CreateDialogTask()

创建一个新的 IDialogTask ,并将其添加到 DialogTasks

(继承自 IDialogTasks)
PollAsync(CancellationToken)

轮询目标以查找要完成的任何工作。

(继承自 IEventLoop)
Post(Event, Action)

对话系统表示对话任务及其事件循环的顶级接口。

(继承自 IEventProducer<Event>)

适用于