ladendirekt / pjsip4net

A wrapper library exposing the pjsip library to the .NET world in a OO-friendly way.
71 stars 42 forks source link

How do I know if can outgoing sip call is answered? #94

Closed appgurung closed 5 years ago

appgurung commented 6 years ago

I want to know if an outgoing call is answered so that I stream a wav file. Is there any event in Program.cs in pjsip4net console that can help me?

siniypin commented 5 years ago

Yep, https://github.com/siniypin/pjsip4net/blob/master/pjsip4net/Interfaces/ICallManager.cs#L16

appgurung commented 5 years ago

Thanks for your help.