Package that allows Alexa skills to take part in the CanFulfillIntentRequest Beta
CanFulfillIntentRequestConverter.AddToRequestConverter();
...
if (convertedObj.Request is Request.Type.CanFulfillIntentRequest)
{
...
}
var skillResponse = ResponseBuilder.Ask(...);
return skillResponse.CanFulfill(canFulfillIntent);