Share via


DialogTurnResult.Result 属性

定义

获取或设置刚刚结束的对话返回的结果。 这只会在某些情况下填充:

  • 机器人调用 DialogContext.BeginDialogAsync() 以启动新对话,对话立即结束。
  • 机器人调用 DialogContext.ContinueDialogAsync() ,处于活动状态的对话结束。

在填充它的所有情况下, ActiveDialog 都将是 null

public object Result { get; set; }
member this.Result : obj with get, set
Public Property Result As Object

属性值

刚刚结束的对话返回的结果。

适用于