DialogTurnResult.Result Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.