Skip to content

Instantly share code, notes, and snippets.

@timheuer
Created January 6, 2017 16:06
Show Gist options
  • Save timheuer/bb069e069b09c09d62362d5a05902134 to your computer and use it in GitHub Desktop.
Save timheuer/bb069e069b09c09d62362d5a05902134 to your computer and use it in GitHub Desktop.
Get the Intent from the IntentRequest
if (request.GetRequestType() == typeof(IntentRequest) {
// get the intent
var theIntent = ((IntentRequest)request).Intent;
// get the name
// theIntent.Name
// do stuff with slots
// theIntent.Slots
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment