Project Description

Animaonline Windows Live Presence Wrapper Let's you query Windows Live service for user's status.
Powered by Microsoft's Windows Live API

How To Use:

First: To query someone's status they will have to sign up for Live Presence to do so, use the following code

Animaonline.WindowsLive.PresenceWrapper Presence = new Animaonline.WindowsLive.PresenceWrapper();
Presence.SignUpForLivePresence("PrivacyURL", "ReturnURL");

To query Windows Live use the following code:

Animaonline.WindowsLive.PresenceWrapper Presence = new Animaonline.WindowsLive.PresenceWrapper();
Presence.GetPresence("animaonline@gmail.com");

The following code will output query result

Console.WriteLine("Status:{0} Display Name:{1}", Presence.status,Presence.displayName);