0

我试图弄清楚如何在 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();
    }
}

但我没有看到任何添加和合并调用的代码部分。

4

1 回答 1

1

For now, there's no sucn built-in API for you to make conference call in UWP. It should be a feature request. You could submit your feature request on WP UserVoice.

于 2017-03-13T09:36:42.443 回答