コード例 #1
0
ファイル: TwilioController.cs プロジェクト: thethorne48/PPOK
        public ActionResult SendVoiceMessage(string toPhoneNumber, string startingRelativeUri)
        {
            var call = TwilioService.SendVoiceMessage(toPhoneNumber, startingRelativeUri);

            return(new HttpStatusCodeResult(HttpStatusCode.OK));
        }