Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Created August 13, 2016 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jfversluis/e5900e0ce555c661326ee4ad948e561c to your computer and use it in GitHub Desktop.
Save jfversluis/e5900e0ce555c661326ee4ad948e561c to your computer and use it in GitHub Desktop.
Bot Framework Typing Activity
// Show 'user is typing' so the user knows something is happening
var typingActivity = activity.CreateReply();
typingActivity.Type = ActivityTypes.Typing;
await connector.Conversations.ReplyToActivityAsync(typingActivity);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment