非同期更新呼び出しが呼び出しを完全に中断しないようにするにはどうすればよいですか? 非同期呼び出しが行われる前に終了したい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);
}