DebugSupport.DebuggerStepAsync Method
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.
Overloads
DebuggerStepAsync(DialogContext, Dialog, String, CancellationToken) |
Call into active IDialogDebugger and let it know that we are at given point in the dialog. |
DebuggerStepAsync(DialogContext, Recognizer, String, CancellationToken) |
Call into active IDialogDebugger and let it know that we are at given point in the Recognizer. |
DebuggerStepAsync(DialogContext, IRecognizer, String, CancellationToken) |
Call into active IDialogDebugger and let it know that we are at given point in the Recognizer. |
DebuggerStepAsync(DialogContext, Dialog, String, CancellationToken)
Call into active IDialogDebugger and let it know that we are at given point in the dialog.
public static System.Threading.Tasks.Task DebuggerStepAsync (this Microsoft.Bot.Builder.Dialogs.DialogContext context, Microsoft.Bot.Builder.Dialogs.Dialog dialog, string more, System.Threading.CancellationToken cancellationToken);
static member DebuggerStepAsync : Microsoft.Bot.Builder.Dialogs.DialogContext * Microsoft.Bot.Builder.Dialogs.Dialog * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function DebuggerStepAsync (context As DialogContext, dialog As Dialog, more As String, cancellationToken As CancellationToken) As Task
Parameters
- context
- DialogContext
dialogContext.
- dialog
- Dialog
dialog.
- more
- String
label.
- cancellationToken
- CancellationToken
cancellation token for async operations.
Returns
async task.
Applies to
DebuggerStepAsync(DialogContext, Recognizer, String, CancellationToken)
Call into active IDialogDebugger and let it know that we are at given point in the Recognizer.
public static System.Threading.Tasks.Task DebuggerStepAsync (this Microsoft.Bot.Builder.Dialogs.DialogContext context, Microsoft.Bot.Builder.Dialogs.Recognizer recognizer, string more, System.Threading.CancellationToken cancellationToken);
static member DebuggerStepAsync : Microsoft.Bot.Builder.Dialogs.DialogContext * Microsoft.Bot.Builder.Dialogs.Recognizer * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function DebuggerStepAsync (context As DialogContext, recognizer As Recognizer, more As String, cancellationToken As CancellationToken) As Task
Parameters
- context
- DialogContext
dialogContext.
- recognizer
- Recognizer
recognizer.
- more
- String
label.
- cancellationToken
- CancellationToken
cancellation token for async operations.
Returns
async task.
Applies to
DebuggerStepAsync(DialogContext, IRecognizer, String, CancellationToken)
Call into active IDialogDebugger and let it know that we are at given point in the Recognizer.
public static System.Threading.Tasks.Task DebuggerStepAsync (this Microsoft.Bot.Builder.Dialogs.DialogContext context, Microsoft.Bot.Builder.IRecognizer recognizer, string more, System.Threading.CancellationToken cancellationToken);
static member DebuggerStepAsync : Microsoft.Bot.Builder.Dialogs.DialogContext * Microsoft.Bot.Builder.IRecognizer * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function DebuggerStepAsync (context As DialogContext, recognizer As IRecognizer, more As String, cancellationToken As CancellationToken) As Task
Parameters
- context
- DialogContext
dialogContext.
- recognizer
- IRecognizer
recognizer.
- more
- String
label.
- cancellationToken
- CancellationToken
cancellation token for async operations.
Returns
async task.