Created
January 22, 2016 21:48
-
-
Save dtolb/2d072277164f0471943c to your computer and use it in GitHub Desktop.
Create Bridge
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private async Task ProcessCatapultToEvent(AnswerEvent ev) | |
{ | |
//"to" number answered a call. Making a bridge with "from" number's call | |
var b = await Bridge.Create(Client, new[] {ev.CallId, ev.Tag}, true); | |
Debug.WriteLine(string.Format("BridgeId is {0}", b.Id)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment