从 Teams 接收信息的方法导致以后的方法崩溃

Method receiving Info from Teams causing later methods to crash

我有一个从 MS Teams 收集用户数据的方法,虽然此代码按预期工作,但添加此方法会使以前工作的方法崩溃。

public async void GetUsers()
{
    string teamId = "TeamsID";
    string tenantId = "TenantID";
    var connector = new ConnectorClient(new Uri(Instance.Activity.ServiceUrl));
    members = await connector.Conversations.GetTeamsConversationMembersAsync(teamId, tenantId);
    Instance.EmailList.Clear();
    foreach (var member in members)
    {
        Instance.EmailList.Add(member.Email);
    }

}

我相信行:

members = await connector.Conversations.GetTeamsConversationMembersAsync(teamId, tenantId);

在接收用户信息时,让机器人认为用户正在输入,导致我后面的方法在没有用户输入的情况下触发,并因为没有输入或因为输入是数据块而崩溃用户数据。

这只是我的理论,我可能不正确。 以下是崩溃的方法:

async Task ReplyToQuestions(IDialogContext context, IAwaitable<IMessageActivity> argument)
{
    var AnswerHolder = await argument;
    Answers.Add(AnswerHolder.Text);
    Answers[AnswerCounter] = Answers[AnswerCounter].First().ToString().ToUpper() + Answers[AnswerCounter].Substring(1);

    var isQuit = AnswerHolder.Text;
    var isQuit2 = Regex.Match(isQuit, @"\b(Quit|quit|QUIT)\b").Value;
    Regex rgx = new Regex(@"\b(Quit|quit|QUIT)\b");

    if (rgx.IsMatch(isQuit2)) // checks for the user trying to quit/restart bot
    {
        await context.PostAsync(string.Format("Exiting current process. Restarting."));
        context.Done(isQuit); // returns to the start of dialog (StartAsync)
    }
    else
    {
        if (QuestionCounter < 5)
        {
            await context.PostAsync(string.Format($"Question {QuestionCounter + 1}: {Question[QuestionCounter]}"));
        }
        AnswerCounter += 1;
        QuestionCounter += 1;
        if (AnswerCounter < 5)
        {
            context.Wait(ReplyToQuestions);
        }
        else if (AnswerCounter == 5)
        {
            PostToChannel($"{Name}'s answers to the questions are as follows: \n\nQuestion1 Answer: {Answers[0]} \n\nQuestion2 Answer: {Answers[1]} \n\n" +
            $"Question3 Answer: {Answers[2]} \n\nQuestion4 Answer: {Answers[3]} \n\nQuestion5 Answer: {Answers[4]} \n\n", context);

            await context.PostAsync(string.Format("Your answers have been posted to the 'What's Up' channel."));
            AnswerCounter = 0;
            QuestionCounter = 1;
            context.Done(Answers[4]);
        }
        else
        {
            await context.PostAsync($"{AnswerCounter}");
            await context.PostAsync(string.Format("Oh no! it appears something has gone wrong. please try re-entering your answers"));
            AnswerCounter = 0;
            QuestionCounter = 1;
            context.Wait(ReplyToQuestions);
        }
    }
}

以及调用它的代码:

 async Task Choice(IDialogContext context, IAwaitable<IMessageActivity> argument) // this method recives and validates a question
        {
            var Choice = await argument;

            var isQuit = Choice.Text;
            var isQuit2 = Regex.Match(isQuit, @"\b(Quit|quit|QUIT)\b").Value;
            Regex rgx = new Regex(@"\b(Quit|quit|QUIT)\b");
            var isEnter = Regex.Match(isQuit, @"\b(Enter|ENTER|enter)\b").Value;
            Regex rgx2 = new Regex(@"\b(Enter|ENTER|enter)\b");
            var isReply = Regex.Match(isQuit, @"\b(Reply|REPLY|reply)\b").Value;
            Regex rgx3 = new Regex(@"\b(Reply|REPLY|reply)\b");

            GetUsers();

            if (rgx.IsMatch(isQuit2)) // if the user choses to quit
            {
                await context.PostAsync(string.Format("Exiting current process. Restarting."));
                context.Done(isQuit); // restarts the program, calls the first method
            }
            else if (rgx2.IsMatch(isEnter)) // if the user choses to quit
            {
                await context.PostAsync(string.Format("Please enter your custom question."));
                context.Wait(EnterQuestion);
            }
            else if (rgx3.IsMatch(isReply)) // if the user choses to quit
            {
                Answers.Clear();
                await context.PostAsync(string.Format("Please answer the following questions:"));
                await context.PostAsync(string.Format($"Question 1: {Question[0]}"));
                context.Wait(ReplyToQuestions);
            }
            else
            {
                await context.PostAsync(string.Format("sorry this was not a choice, try again."));
            }
        }

有谁知道我可以解决这个问题的方法吗?因为我在这上面花了整整 2 天没有成功。

我不确定您遇到了什么错误。但是,用于检索会话成员的方法已被弃用:https://msdn.microsoft.com/en-us/microsoft-teams/botapis#net-example 该页面上的注释应说明:

you should migrate your code to use GetConversationMembersAsync(conversationId)

var connector = new ConnectorClient(new Uri(activity.ServiceUrl));
var members = await connector.Conversations.GetConversationMembersAsync(activity.Conversation.Id);