DialogTurnResult.Result Property

Definition

Gets or sets the result returned by a dialog that was just ended. This will only be populated in certain cases:

  • The bot calls DialogContext.BeginDialogAsync() to start a new dialog and the dialog ends immediately.
  • The bot calls DialogContext.ContinueDialogAsync() and a dialog that was active ends.

In all cases where it's populated, ActiveDialog will be null.

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

Property Value

The result returned by a dialog that was just ended.

Applies to