如何阻止异步更新调用完全中断调用?我想response.Say("Let me think about that.")
在异步调用之前完成,目前它只是停止Say()
动词中间句子。
[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);
}