SDD
SDD

Reputation: 1451

Where can I find an ICQ library for C#?

Is there any (preferably native) C# library which allows me to send some messages via the ICQ protocol? Is there something better than just wrapping libgaim or something?

Upvotes: 5

Views: 5038

Answers (4)

Bruno Costa
Bruno Costa

Reputation: 2720

Perhaps this can help you out:

http://sourceforge.net/projects/oscarlib/

Download the source and check the OscarLib.

Upvotes: 3

lipka
lipka

Reputation: 1272

Try using Icq# - http://icq-sharp.sourceforge.net/

Upvotes: 1

JaredPar
JaredPar

Reputation: 755587

You could try the Across Communications web service.

Sample: http://www.acrosscommunications.com/DevSampleCS.aspx?Object=SOAP:ICQ&Detail=-sample-&Lang=CS

Upvotes: 1

ryeguy
ryeguy

Reputation: 66921

There aren't any libraries I know of, so if you want to do this in C# you're probably going to have to make it yourself. You can find the ICQ protocol specification here.

Upvotes: 1

Related Questions