public static CrunchResponse TellWithReprompt(Response.Ssml.Speech speechResponse, Reprompt reprompt, Session sessionAttributes) { return(TellWithReprompt(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() }, reprompt, sessionAttributes)); }
public static CrunchResponse TellWithReprompt(Response.Ssml.Speech speechResponse, Reprompt reprompt) { return(TellWithReprompt(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() }, reprompt)); }
public static CrunchResponse Tell(Response.Ssml.Speech speechResponse, Session sessionAttributes) { return(Tell(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() }, sessionAttributes)); }
public static CrunchResponse Tell(Response.Ssml.Speech speechResponse) { return(Tell(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() })); }
public static CrunchResponse 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 CrunchResponse TellWithAskForPermissionConsentCard(Response.Ssml.Speech speechResponse, IEnumerable <string> permissions, Session sessionAttributes) { return(TellWithAskForPermissionsConsentCard(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() }, permissions, sessionAttributes)); }
public static CrunchResponse TellWithLinkAccountCard(Response.Ssml.Speech speechResponse) { return(TellWithLinkAccountCard(new SsmlOutputSpeech { Ssml = speechResponse.ToXml() })); }
public static CrunchResponse 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 Task <HttpResponseMessage> SendSpeech(Ssml.Speech ssml) { return(Send(new VoicePlayerSpeakDirective(ssml))); }