DialogTurnStatus Enum
Definition
Enums the possible states of the dialogs on the stack.
public enum DialogTurnStatus
type DialogTurnStatus =
Public Enum DialogTurnStatus
- Inheritance
-
DialogTurnStatus
Fields
Cancelled | 3 | Indicates that the dialog was canceled, and no child dialogs to the current context are on the dialog stack. |
Complete | 2 | Indicates that a dialog completed successfully, the result is available, and no child dialogs to the current context are on the dialog stack. |
CompleteAndWait | 4 | Current dialog completed successfully, but turn should end. |
Empty | 0 | Indicates that there is currently nothing on the dialog stack. |
Waiting | 1 | Indicates that the dialog on top is waiting for a response from the user. |