Communication between .net and msn messenger

Hi everyone, I have a windows application that has a text box for entering a value and a button ... In the first step: when I click the button..i will hit dB and add the input value for the general value ... In the second step: I I will get this general value and add it to my msn messenger as a private message ....

At the moment I took the first step ... but before starting the second step, I want to make sure that there is a way to establish a connection between .net and msn messenger ... And if theres not .. Just omit the second ...

So my real question is: I just want to know if there is a way of interaction between .net C # and msn messenger

Thanks alot =)

+4
source share
2 answers

Using these libraries, you can achieve what you want:

http://code.google.com/p/msnp-sharp/

MSNPSharp is a .net library that implements the MSN protocol. This is an ongoing DotMSN project in 2002. Today we have more than 10,000,000 users worldwide using services based on our library.

http://msdn.microsoft.com/en-us/library/ms630960.aspx

http://www.xihsolutions.net/dotmsn/

+4
source

There is a Windows Live SDK that allows you to access and update your profile using the REST API.

0
source

Source: https://habr.com/ru/post/1335851/


All Articles