Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 449 Bytes

File metadata and controls

18 lines (16 loc) · 449 Bytes

Alexa.NET.CanFulfillIntentRequest

Package that allows Alexa skills to take part in the CanFulfillIntentRequest Beta

Extending Requests to pick up CanFulfill

CanFulfillIntentRequestConverter.AddToRequestConverter();
...
if (convertedObj.Request is Request.Type.CanFulfillIntentRequest)
{
  ...
}

Responding to CanFull requests

var skillResponse = ResponseBuilder.Ask(...);
return skillResponse.CanFulfill(canFulfillIntent);