Windows Phone Phonecall with dtmf

房东的猫 提交于 2019-12-09 22:14:11

问题


I know using phonecalltask we can make a call programmetically by filling the phonenumber field .

A sample code may be

 PhoneCallTask phn = new PhoneCallTask();
 phn.PhoneNumber = "9807689,657";
 phn.show ();

But my question is,is it possible to send dtmf right at the point when we are initiating calls ?

like in android and iphone we can send dtmf by dividing the number with ",". EX: 9876543,123

Is it also possible in windows phone? if possible is windows phone uses the same format to separate dtmf number or they use other tag other than "," ?

How to call programatically using p and w commands,and most predominantly the dtmf sound must send automatically after call


回答1:


Just did the test. Your code works, and the DTMF are played right after the callee answers the phone.

p and w are supported as well, looks like the implementation is conform to the RFC 3601.



来源:https://stackoverflow.com/questions/14036243/windows-phone-phonecall-with-dtmf

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!