我试图弄清楚如何在 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();
}
}
但我没有看到任何添加和合并调用的代码部分。