DialogTurnResult Class
Definition
Result returned to the caller of one of the various stack manipulation methods.
[System.Diagnostics.DebuggerDisplay("[DialogTurnStatus.{Status}]{Result ?? string.Empty}")]
public class DialogTurnResult
[<System.Diagnostics.DebuggerDisplay("[DialogTurnStatus.{Status}]{Result ?? string.Empty}")>]
type DialogTurnResult = class
Public Class DialogTurnResult
- Inheritance
-
DialogTurnResult
- Attributes
Remarks
Use EndDialogAsync(Object, CancellationToken) to end a Dialog and return a result to the calling context.
Constructors
DialogTurnResult(DialogTurnStatus, Object) |
Initializes a new instance of the DialogTurnResult class. |
Properties
ParentEnded |
Gets or sets a value indicating whether a DialogCommand has ended its parent container and the parent should not perform any further processing. |
Result |
Gets or sets the result returned by a dialog that was just ended. This will only be populated in certain cases:
In all cases where it's populated, ActiveDialog will be |
Status |
Gets or sets the current status of the stack. |