【发布时间】:2017-03-12 18:30:15
【问题描述】:
我正试图弄清楚如何在 UWP 中使用 C# 进行电话会议(添加和合并不同联系人的电话 - 蜂窝网络而不是 VoIP)。
我在 github 中看到了示例代码“PhoneCall”: https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/PhoneCall 关于如何拨号:
public async void DialOnCurrentLineAsync(string PhoneNumber, string DisplayName)
{
if ((currentPhoneLine != null) && (PhoneNumber.Trim().Length > 0))
{
currentPhoneLine.Dial(PhoneNumber, DisplayName);
}
else
{
var dialog = new MessageDialog("No line found to place the call");
await dialog.ShowAsync();
}
}
但我没有看到添加和合并调用的任何代码部分。
【问题讨论】:
标签: c# api uwp windows-phone conference