gpt4 book ai didi

c# - TAPI 应用程序,无法发送 DTMF 信号

转载 作者:行者123 更新时间:2023-11-30 18:39:43 29 4
gpt4 key购买 nike

我正在尝试编写一个建立调制解调器连接的应用程序,然后发送一个 dtmf 信号。我的应用程序创建了一个调用,但它没有发送该 DTMF 信号。

我正在使用 TAPI 在 C# 中编写它。

这段代码有什么问题??在按钮 3 处,您可以看到 DTMF 功能。

我的申请:

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;

using TAPI3Lib;

namespace dialer
{

public partial class MainForm : Form
{
private TAPIClass tapi;
private ITAddress[] adresy = new ITAddress[10];
private ITBasicCallControl polaczenie = null;
private int wybrany = -1;

public MainForm()
{
InitializeComponent();
ZainicjalizujTAPI();
}

private void ZainicjalizujTAPI()
{
try
{

tapi = new TAPIClass();
tapi.Initialize();


IEnumAddress ea = tapi.EnumerateAddresses();
ITAddress adres;
uint arg = 0;

for(uint i = 0; i < 10; ++i)
{
ea.Next(1, out adres, ref arg);
if(adres == null) break;
adresy[i] = adres;
listaLinii.Items.Add(adres.AddressName);
}
}
catch(Exception wyj)
{

MessageBox.Show(wyj.ToString(), "Błąd!");
}
}


void Button1Click(object sender, EventArgs e)
{
if(listaLinii.SelectedIndex < 0)
{
MessageBox.Show("Nie wybrano linii", "Błąd!");
return;
}

if(polaczenie != null)
{
MessageBox.Show("Połączenie już istnieje", "Błąd!");
return;
}

wybrany = listaLinii.SelectedIndex;

try
{
polaczenie = adresy[wybrany].CreateCall("12345678",
TapiConstants.LINEADDRESSTYPE_PHONENUMBER,
TapiConstants.TAPIMEDIATYPE_DATAMODEM | TapiConstants.TAPIMEDIATYPE_AUDIO);

polaczenie.SetQOS(TapiConstants.TAPIMEDIATYPE_DATAMODEM | TapiConstants.TAPIMEDIATYPE_AUDIO,
QOS_SERVICE_LEVEL.QSL_BEST_EFFORT);

polaczenie.Connect(false);
}
catch(Exception wyj)
{
MessageBox.Show(wyj.ToString(), "Błąd!");
polaczenie = null;
}
}

void Button2Click(object sender, EventArgs e)
{
if(polaczenie == null) return;

try
{

polaczenie.Disconnect(DISCONNECT_CODE.DC_NORMAL);
polaczenie = null;
}
catch(Exception wyj)
{
MessageBox.Show(wyj.ToString(), "Błąd!");
}
}

// HERE is the button responsible for sending DTMF signal (doesn't work)
void Button3Click(object sender, EventArgs e)
{
if(polaczenie == null) return;

try
{

ITLegacyCallMediaControl2 cmc = (ITLegacyCallMediaControl2) polaczenie;
cmc.GenerateDigits("246", TapiConstants.LINEDIGITMODE_DTMF);

}
catch(Exception wyj)
{
MessageBox.Show(wyj.ToString(), "Błąd!");
}
}

void ListaLiniiSelectedIndexChanged(object sender, EventArgs e)
{

}
}

最佳答案

您可以将 ATAPI 库用于 .Net TAPI 库。它还包含一些示例,以便您了解 TAPI 的工作原理。 ATAPI 托管在 CodePlex 中并获得 MIT 许可。在谷歌上搜索 ATAPI codeplex 以获取该库。

关于c# - TAPI 应用程序,无法发送 DTMF 信号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9292580/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com