在C#UWP中进行电话会议(蜂窝电话而不是VoIP)

时间:2017-03-12 18:30:15

标签: c# api uwp windows-phone conference

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

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

1 个答案:

答案 0 :(得分:1)

目前,您还没有内置的API可以在UWP中进行电话会议。它应该是一个功能请求。您可以在WP UserVoice上提交功能请求。