我试图弄清楚如何在UWP中使用C#进行电话会议(添加和合并不同联系人的电话 - 蜂窝而非VoIP)。
我看到示例代码" PhoneCall"在github中提出: 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();
}
}
但我没有看到代码中添加和合并调用的任何部分。