这个 Twilio TwiML 在 C# 中的等价物是什么?我最感兴趣的是在 C# 中实现 hangupOnStar 并将调用传递给另一个 URL。
<?xml version="1.0" encoding="UTF-8" ?>
<Response>
<Dial hangupOnStar="true">
<Conference>ConferenceOne</Conference>
</Dial>
<Gather action="http://example.ngrok.io/Conference/Join" numDigits="1">
<Say>To mute all participants, press one</Say>
<Say>To leave the conference, press two</Say>
</Gather>
</Response>