I am working on Bot Technology, in my current bot project I implemented the skype calling feature using calling controller. everything working fine, but I have struggled for getting the skype username (like who are logged into skype) in CallingController.cs or some other classes.
In MessagesController.cs , I know for getting the skype username by using this line.
var username = activity.From.Name.ToString();
Can you please tell me how to get the skype username using skype calling feature not in MessagesController.
-Pradeep