Hi folks,
I'm trying to have my windows application send a message to two msn messenger accounts. So, I grabbed the code from the MSNPSharp library and had a look in that.
I can authenticate/sign in without a problem. But once i've done that, I have no idea how to send a simple text message to two other users.
Do those users need to b...
I've just downloaded the MSNP-Sharp library with the aim of creating my own messaging client, however I am struggling to get the example to sign in. The code all compiles and runs, but when I provide my login details and select "Login" I almost immediately get the following SocketException:
"No connection could be made because the ta...
I tried in this way. I subscribed to that event who control the user status, its announcing me that user in Online.
my code is:
void Nameserver_ContactOnline(object sender, ContactEventArgs e)
{
Talk = messenger.CreateConversation();
Talk.Invite(e.Contact.Mail,ClientType.PassportMember);
Talk.SendTextMessage(new ...