So I have an application in ASP.NET Core 2 that uses the Twilio SDK to return Twiml from many endpoints.
The thing that I haven't found any documentation on is how to nest commands to get a result like this
<Response>
<Gather action="http://test.net" method="POST" timeout="15" numDigits="1">
<Say>Option 1</Say>
<Say>Option 2</Say>
</Gather>
</Response>
There is an Append and a Nest function that supposedly takes a child element and nest it into the parent element, but it does not result in what I want, maybe I'm not using it correctly