如何关闭自动回复?

how to turn off automatic replies?

我的机器人有一个选项 "notify"。 如果 "notify" 被点击,我想停止对该用户的自动回复。 那可能吗 ?有什么例子吗?

PS: 我知道这个问题问得不对,但我不知道从哪里开始。

如果您想停止在对话中显示用户从一组选项中选择的内容,您可以将 CardAction 类型设置为 PostBack

例如

CardAction CardButton = new CardAction()
{
    Type = ActionTypes.PostBack,
    Title = item.ToString(),
    Value = item.ToString()
};