Tag: 电话

列出所有系统调制解调器

托管代码中是否有一种方法可以列出系统上安装的调制解调器/电话设备? 如果.Net没办法,你能指点我吗?

Windows Phone 7通话记录 – Mango API

我是否可以通过Mango API手机上的电话号码和日期时间详细信息获取当前的通话记录? 我认为目前的情况是不可能的。

蓝牙拨号32feet.net和c#

我正在尝试为某人提供一个“点击拨号”解决方案,如蓝牙设备,如手机。 我一直试图使用32feet.net bluetooth api这样做。 我没有真正用蓝牙做任何事情(因为通过蓝牙串口发出命令的日子)但我已经配对有问题的设备,它支持pc的免提服务。 我有以下代码尝试连接并发送拨号命令。 String deviceAddr = “11:11:11:11:11:11”; BluetoothAddress addr = BluetoothAddress.Parse(deviceAddr); BluetoothEndPoint rep = new BluetoothEndPoint(addr, BluetoothService.Handsfree); BluetoothClient cli = new BluetoothClient(); cli.Connect(rep); Stream peerStream = cli.GetStream(); String dialCmd = “ATD 0000000000\r\n”; Byte[] dcB = System.Text.Encoding.ASCII.GetBytes(dialCmd); peerStream.Write(dcB, 0, dcB.Length); // Begin Edit ———————————————————— Byte[] sResponse = new Byte[100]; peerStream.Read(sResponse, 0, 99); TextBox1.Text […]

WP 8.1运行时代码,用于拨打电话,发送短信和发送电子邮件(不是Silverlight 8.1)

我正在编写一个应用程序,可以拨打电话,发送短信或电子邮件,就像wp 8.1中的People应用程序一样。 到目前为止,我已经找到一个msdn的链接表单,其中说“适用于:Windows Phone 8和Windows Phone Silverlight 8.1”。 所以这里的代码: 来自这个链接 using Microsoft.Phone.Tasks; private void TextBlock_Tapped_Call(object sender, TappedRoutedEventArgs e) { PhoneCallTask phoneCallTask = new PhoneCallTask(); phoneCallTask.PhoneNumber = “2065550123”; phoneCallTask.DisplayName = “Gage”; phoneCallTask.Show(); } 但是我收到了一个错误: 命名空间“Microsoft”中不存在类型或命名空间名称“Phone”(您是否缺少程序集引用?) 编辑:抱歉有一个重复的问题,同样在这里: 在Windows Phone 8.1中拨打电话回答@Chris Shao,他还更新了代码以发送短信和电子邮件。