【问题标题】:Making conference calls (cellular not VoIP) in C# UWP在 C# UWP 中进行电话会议(蜂窝而不是 VoIP)
【发布时间】: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


    【解决方案1】:

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2010-10-30
      • 1970-01-01
      • 2014-09-21
      相关资源
      最近更新 更多