Click here to Skip to main content
15,879,096 members
Articles / Programming Languages / C#

Controlling Skype with C#

Rate me:
Please Sign up or sign in to vote.
4.59/5 (40 votes)
29 Oct 2013CPOL3 min read 281.1K   8K   116   40
C# example code for controlling Skype
Sample Image - skypecontrolapicsharp.gif

Read this first - Discontinuation of Skype API

Microsoft plans to switch off the Skype desktop API in December 2013. The explanation is that:

"The Desktop API was created in 2004 and it doesn’t support mobile application development. We have, therefore, decided to retire the Desktop API in December 2013."

However, many developers are using Skype API in their products enhancing Skype functionality. And many Skype users rely on these products in their businesses and everyday life.

There is a petition initiative which requests Skype to reconsider this decision.

Introduction

I have put together an example code in C# for controlling the Skype VoIP application. The Skype Control API documentation is freely available. So why not give it a try with C#?

The downloadable ZIP package contains a Visual Studio 2005 solution with two projects - the Skype Control class library and the Test Application.

Background

The Control API for Windows uses window messages for communication between Skype and client applications. This involves usage of Windows API functions. Working with window messages is not directly supported by the .NET Framework classes. Fortunately there is a mechanism in .NET called platform invoke, which enables calls to unmanaged code in DLLs.

I will not explain the Control API in detail here, however I will provide enough information for everyone to start experimenting with the code and playing with Skype through the Test application.

Communication Initiation

Skype uses window messages to communicate with client applications. Registered window messages are used to initiate communication. The SkypeControlAPIDiscover message is used to find the Skype window handle by broadcasting it to all windows. A client application window handle must be specified when sending this message. Skype, if running, will respond with SkypeControlAPIAttach message sent directly to our client window.

C#
internal class Constants
{
    public const string SkypeControlAPIDiscover = "SkypeControlAPIDiscover";
    public const string SkypeControlAPIAttach = "SkypeControlAPIAttach";
}

The LPARAM of the SkypeControlAPIAttach message contains the attach code. This can be Success in case of a successful connection. When the client application tries to connect for the first time, Skype pops up an authorization dialog and notifies the client by sending SkypeControlAPIAttach message with the PendingAuthorisation code. Depending on the user action, Skype will next send a Success or Refused notification.

C#
public enum SkypeAttachStatus : uint
{
    Success = 0,
    PendingAuthorizaion = 1,
    Refused = 2,
    NotAvailable = 3,
    Available = 0x8001
}

When the Skype application is starting, it broadcasts SkypeControlAPIAttach message with the Available code.

Be aware that Skype assumes that our client application will process messages with result of 1 within one second, otherwise the connection times out and the communication is closed. This is important to know while debugging the client. Fortunately Skype can be set to a special "development mode" (by modifying the registry, see Skype API documentation).

Sending Commands

The WM_COPYDATA window message is used for sending Skype commands and receiving command replies and notifications.

Handling the WM_COPYDATA messages in C# is a little bit tricky. The CopyDataStruct needs to be correctly marshaled to and from the native code. The straightforward solution is to simply pass the CopyDataStruct this way:

C#
[DllImport("user32.dll")]
public static extern IntPtr SendMessageTimeout(IntPtr windowHandle,
    uint Msg,
    IntPtr wParam,
    ref CopyDataStruct lParam,
    SendMessageTimeoutFlags flags,
    uint timeout,
    out IntPtr result
);

Note that when filling CopyDataStruct, the Length member also counts the terminating '0' character.

Code for getting the CopyDataStruct form is also straightforward, the Message class has a handy GetLParam method for this.

C#
Platform.CopyDataStruct aCDS = 
    (Platform.CopyDataStruct)m.GetLParam(typeof(Platform.CopyDataStruct));

string aResponse = aCDS.Data;

The SkypeControl Library

All the code for handling window message level communication can be found in the SkypeClient class (SkypeControl library). Platform specific stuff is in the Platform.cs. All of the above is internal to the Skype control library.

The SkypeProxy class is designed to be used for controlling Skype by a client application. Currently, it is only wrapping calls to the SkypeClient class and contains only methods for low level Skype API communication. It is meant to be expanded with methods that encapsulate Skype API at a higher level, e.g. GetUserStatus, Ping.

To control the Skype, just create an instance of the SkypeProxy class. Communication is initiated by a call to Connect. A successful connection is indicated by firing of the SkypeAttach event with AttachStatus set to Success.

Commands are sent to Skype by calling Command with appropriately formatted text command. Results and notifications from Skype are received through the SkypeResponse event.

For more information on Skype Control API and command syntax, please refer to the Skype documentation which is freely available at Skype developer zones.

Enjoy!

History

  • 15th February, 2006: Initial post.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Slovakia Slovakia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionCan not run this program when create it freshly Pin
cdmarasinghe11-Aug-15 2:33
cdmarasinghe11-Aug-15 2:33 
AnswerRe: Can not run this program when create it freshly Pin
John Torjo27-Oct-15 3:05
professionalJohn Torjo27-Oct-15 3:05 
QuestionHelp!!! Pin
Member 105840735-Aug-14 6:48
Member 105840735-Aug-14 6:48 
Questionhow can I integrate kype as part of my application. Pin
thuandung26-Jun-14 17:34
thuandung26-Jun-14 17:34 
QuestionHow to record skype conversation Pin
Tridip Bhattacharjee24-Apr-14 0:58
professionalTridip Bhattacharjee24-Apr-14 0:58 
SuggestionSkype call divert huwaei 3g modem Pin
sahufankariapper5-Apr-14 12:17
sahufankariapper5-Apr-14 12:17 
Questionsend message Pin
vladko4141-Mar-14 2:43
vladko4141-Mar-14 2:43 
QuestionWin 8 Metro Style Skype app Pin
matthias_7923-Dec-13 4:42
matthias_7923-Dec-13 4:42 
QuestionDesktop API retirement - a lie Pin
Cristian Amarie23-Nov-13 21:08
Cristian Amarie23-Nov-13 21:08 
NewsFYI : Skype has announced the termination of API Pin
pipiscrew31-Oct-13 14:22
pipiscrew31-Oct-13 14:22 
Questionperfectoooo Pin
Gun Gun Febrianza29-Oct-13 6:23
Gun Gun Febrianza29-Oct-13 6:23 
Questionupdates Pin
kiquenet.com11-Aug-13 20:50
professionalkiquenet.com11-Aug-13 20:50 
GeneralMy vote of 5 Pin
Ed Nutting4-Sep-12 4:44
Ed Nutting4-Sep-12 4:44 
QuestionThis is fantastic Pin
kevroy31426-Mar-12 11:03
kevroy31426-Mar-12 11:03 
GeneralMy vote of 5 Pin
Member 31518218-Jun-11 3:24
Member 31518218-Jun-11 3:24 
Generalhow to get APP2APP command responses Pin
Akeeq6-May-11 5:06
Akeeq6-May-11 5:06 
GeneralRe: how to get APP2APP command responses Pin
Akeeq13-May-11 19:40
Akeeq13-May-11 19:40 
GeneralRe: how to get APP2APP command responses Pin
Jason Newland28-Nov-13 11:54
Jason Newland28-Nov-13 11:54 
GeneralThank You! Pin
User2932922-May-11 22:56
User2932922-May-11 22:56 
GeneralMy vote of 5 Pin
Mastak.ua15-Nov-10 23:09
Mastak.ua15-Nov-10 23:09 
GeneralThank for this example Pin
Gexrjd14-Mar-10 0:03
Gexrjd14-Mar-10 0:03 
General[Message Deleted] Pin
it.ragester28-Mar-09 5:35
it.ragester28-Mar-09 5:35 
GeneralSkype login Pin
KhangBKIT9-Oct-08 10:06
KhangBKIT9-Oct-08 10:06 
GeneralNot UTF 8 Pin
Tor-Helge Persett29-Jul-08 21:26
Tor-Helge Persett29-Jul-08 21:26 
You don't use UTF8 encoding when sending and receiving strings from skype. Basically all string containing anything else than the standard ASCII characters looks weird / broken. Anyway.. thanks for a quick how to on interacting with Skype... didn't get that COM library to work Wink | ;)
Generalwow, super examplik diky moc Pin
Member 301469616-Jun-08 22:35
Member 301469616-Jun-08 22:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.