public static SkillResponse TellWithReprompt(Response.Ssml.Speech speechResponse, Reprompt reprompt, Session sessionAttributes) { return(TellWithReprompt(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() }, reprompt, sessionAttributes)); }
public Task <HttpResponseMessage> SendSpeech(Ssml.Speech speech) { return(Send(new VoicePlayerSpeakDirective(speech))); }
public static SkillResponse TellWithReprompt(Response.Ssml.Speech speechResponse, Reprompt reprompt) { return(TellWithReprompt(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() }, reprompt)); }
public static SkillResponse Tell(Response.Ssml.Speech speechResponse, Session sessionAttributes) { return(Tell(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() }, sessionAttributes)); }
public static SkillResponse AskWithCard(Response.Ssml.Speech speechResponse, string title, string content, Reprompt reprompt, Session sessionAttributes) { return(AskWithCard(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() }, title, content, reprompt, sessionAttributes)); }
public static SkillResponse Tell(Response.Ssml.Speech speechResponse) { return(Tell(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() })); }
public static SkillResponse TellWithLinkAccountCard(Response.Ssml.Speech speechResponse) { return(TellWithLinkAccountCard(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() })); }
public static SkillResponse TellWithAskForPermissionConsentCard(Response.Ssml.Speech speechResponse, IEnumerable <string> permissions, Session sessionAttributes) { return(TellWithAskForPermissionsConsentCard(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() }, permissions, sessionAttributes)); }
public static SkillResponse TellWithCard(Response.Ssml.Speech speechResponse, string title, string content) { return(TellWithCard(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() }, title, content)); }
public Reprompt(Ssml.Speech speech) { OutputSpeech = new SsmlOutputSpeech { Ssml = speech.ToXml() }; }
public static SkillResponse AskWithCard(Response.Ssml.Speech speechResponse, string title, string content, string reprompt, Session sessionAttributes) { return(AskWithCard(speechResponse, title, content, new Reprompt(reprompt), sessionAttributes)); }
public static SkillResponse Ask(Response.Ssml.Speech speechResponse, string reprompt, Session sessionAttributes) { return(Ask(speechResponse, new Reprompt(reprompt), sessionAttributes)); }
public static SkillResponse Ask(Response.Ssml.Speech speechResponse, string reprompt) { return(Ask(speechResponse, new Reprompt(reprompt))); }