Set time of Activity.Typing animation
问题 I'm trying to create some animation during the time when I fetch the data from a server. "Typing" activity seems to be reasonable but it works only for ~4 seconds : Activity reply = activity.CreateReply(); reply.Type = ActivityTypes.Typing; reply.Text = null; ConnectorClient connector = new ConnectorClient(new Uri(activity.ServiceUrl)); await connector.Conversations.ReplyToActivityAsync(reply); I was trying to do async listening: while (!_fetchEnded) { await connector.Conversations