Bot Framework:在 FormBuilder Confirmation 方法中,如果用户响应为 "No",则机器人应退出表单

Bot Framework: In FormBuilder Confirmation method, if user responds as "No" then bot should quit the form

我在 Bot Framework 应用程序中有以下代码,当 bot 要求用户确认并且用户以 "No" 响应时,然后执行修改表单参数的内置步骤。像 "Do you want to change" 带有参数名称和值。我想要做的是当用户响应 "No" 时,机器人应该退出表单处理。

public static IForm<FlightBooking> BuildForm()
{
    return new FormBuilder<FlightBooking>().Message("Tell me meeting details!")
    .Field(nameof(title))
    .Confirm(async (state) =>
     {
       return new PromptAttribute(new TemplateAttribute(TemplateUsage.Confirmation, "Do you really want to continue?")); 
     })
    .Build();
}

我在表单流中添加了一个字段 "confirmation",它会要求您确认,在 return 中,我们将得到 Yes/No.