您可以让 OnTurnAsync 仅在满足您的条件时启动第一个/主对话框。
当用户第一次向机器人发送消息时,不会有任何活动的 Dialog。您可以利用该条件并在那里添加您的条件,只有在满足两者时才启动对话框:
// Getting the bot accessor state you want to use
LanguageAccessor languageAccessor = await _accessors.LanguageAccessor.GetAsync(turnContext, () => new LanguageAccessor(), cancellationToken);
// Every step sends a response. If no dialog is active, no response is sent and turnContext.Responded is null
//where turnContext.Activity.Text is the message sent by the user
if (!turnContext.Responded && ((languageAccessor.property)turnContext.Activity.Text))
OnTurnAsync 应该如下所示:
public async Task OnTurnAsync(ITurnContext turnContext, CancellationToken cancellationToken = default(CancellationToken))
{
if (turnContext.Activity.Type == ActivityTypes.Message)
{
// Establish dialog state from the conversation state.
DialogContext dc = await _dialogs.CreateContextAsync(turnContext, cancellationToken);
// Get the user's info.
LanguageAccessor languageAccessor = await _accessors.LanguageAccessor.GetAsync(turnContext, () => new LanguageAccessor(), cancellationToken);
await _accessors.UserInfoAccessor.SetAsync(turnContext, userInfo, cancellationToken);
// Continue any current dialog.
DialogTurnResult dialogTurnResult = await dc.ContinueDialogAsync();
// Every dialog step sends a response, so if no response was sent,
// then no dialog is currently active and the Else if is entered.
if (!turnContext.Responded && ((languageAccessor.property)turnContext.Activity.Text))
{
//This starts the MainDialog if there's no active dialog when the user sends a message
await dc.BeginDialogAsync(MainDialogId, null, cancellationToken);
}
//Else if the validation is not passed
else if (!turnContext.Responded && !
((languageAccessor.property)turnContext.Activity.Text))
{ await turnContext.SendActivityAsync("Thank you, see you next time"); }
}
}
另一种选择是将访问器对象发送到您要使用它的对话框,并使用第一个对话框的瀑布步骤在满足验证时继续对话框,否则结束它。
瀑布步骤应如下所示:
private async Task<DialogTurnResult> ValidationFirstStepAsync(
WaterfallStepContext stepContext,
CancellationToken cancellationToken = default(CancellationToken))
{
// Access the bot UserInfo accessor so it can be used to get state info.
LanguageAccessor languageAccessor = await
_accessors.LanguageAccessor.GetAsync(stepContext.Context, null,
cancellationToken);
if ((languageAccessor)stepContext.Context.Activity.Text)
{
await stepContext.Context.SendActivityAsync(
"Hi!");
return await stepContext.NextAsync();
}
else
{
await stepContext.Context.SendActivityAsync("Sorry, your language is not supported");
return await stepContext.EndDialogAsync(); }
}
}