How do I stop the async update call from completely interrupting the call? I would like response.Say("Let me think about that.")
to finish before the async call is made, currently it just stops the Say()
verb mid sentence.
[HttpPost]
public ActionResult Intermediate(string RecordingUrl)
{
recordingUrl = RecordingUrl;
var response = new VoiceResponse();
response.Say("Let me think about that.");
//Asynchronously POST
var call = CallResource.UpdateAsync(
method: Twilio.Http.HttpMethod.Post,
url: new Uri("http://123456789/voice/show"),
pathSid: sessionIdentifier, fallbackUrl: new Uri("http://123456789/voice/Fallback"));
return TwiML(response);
}