Skip to content

stoiveyp/Alexa.NET.FluentResponse

Repository files navigation

Alexa.NET.FluentResponse

Small helper library that allows you to create Alexa.NET Responses using a fluent interface

Creating a simple response

Fluent
  .Speak("hello world").Response;

Adding a card and end the session

Fluent
  .Speak("here's a card")
  .WithSimpleCard("title","card content")
  .AndShouldEndSession(true)
  .Response;

Creating a response, reprompt and maintain the current session

Fluent
  .Speak("are you ok?")
  .Reprompt("I said are you okay?")
  .WithSession(sessionDictionary)
  .Response;

About

Small helper library that allows you to create Alexa.NET Responses using a fluent interface

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages