Skype call using C #

I want to develop an assistant for the blind, such as Jarvis . This is a C # form application. I need to connect my C # project using the Skype API in order to call some username using Skype. When I command with help Call John, he answers by calling John via Skype.

Can someone show me some code snippets to help with this?

+4
source share
1 answer

To start the call a Skype, Process.Start("callto:john");. You can associate "callto:" with the name of the contact.

MSDN # , , . , , - "".

Choices colors = new Choices();
colors.Add(new string[] {"red", "green", "blue"});

GrammarBuilder gb = new GrammarBuilder();
gb.Append(colors);

// Create the Grammar instance.
Grammar g = new Grammar(gb);

UPDATE Skype4comLib. !

Skype skype;
skype = new SKYPE4COMLib.Skype();
string SkypeID = "john";
Call call = skype.PlaceCall(SkypeID);
+5

All Articles