File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
libraries/botbuilder-dialogs/botbuilder/dialogs Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 66class DialogTurnResult :
77 """
88 Result returned to the caller of one of the various stack manipulation methods.
9-
10- ..remarks::
11- Use :class:`DialogContext.end_dialogAsync()` to end a :class:`Dialog` and
12- return a result to the calling context.
9+
10+ Use :meth:`DialogContext.end_dialogAsync()` to end a :class:`Dialog` and
11+ return a result to the calling context.
1312 """
1413 def __init__ (self , status : DialogTurnStatus , result : object = None ):
1514 """
@@ -36,12 +35,12 @@ def result(self):
3635 """
3736 Final result returned by a dialog that just completed.
3837
39- ..remarks ::
40- This will only be populated in certain cases:
41- - The bot calls `DialogContext.begin_dialog()` to start a new dialog and the dialog ends immediately.
42- - The bot calls `DialogContext.continue_dialog()` and a dialog that was active ends.
38+ .. note ::
39+ This will only be populated in certain cases:
40+ * The bot calls :meth: `DialogContext.begin_dialog()` to start a new dialog and the dialog ends immediately.
41+ * The bot calls :meth: `DialogContext.continue_dialog()` and a dialog that was active ends.
4342
44- :return self._result:
43+ :return self._result: Final result returned by a dialog that just completed.
4544 :rtype self._result: object
4645 """
4746 return self ._result
You can’t perform that action at this time.
0 commit comments