|
bool
|
SetIdentity (string sEmail, string sPassword)
|
Set the main account for all querys
|
|
void
|
SetIdentityAsync (string sEmail, string sPassword)
|
Set the main account for all querys (Async Call)
|
|
bool
|
LogUser (string sEmail, string sPassword, out string sPSNId, out CookieContainer
cookies)
|
Log in a specific account and get User Id and cookies needed for next calls
|
|
void
|
LogUser (string sEmail, string sPassword)
|
Log in a specific account (Async Call)
|
|
PSNID
|
GetPSNId (string sPSNId)
|
Get Profile of user sPSNId
|
|
PSNID
|
GetPSNId (string sPSNId, CookieContainer cookies)
|
Get Profile of user sPSNId using a specific account
|
|
void
|
GetPSNIdAsync (string sPSNId)
|
Get Profile of user sPSNId (Async Call)
|
|
void
|
GetPSNIdAsync (string sPSNId, CookieContainer cookies)
|
Get Profile of user sPSNId using a specific account (Async Call)
|
|
List<Game>
|
GetGames (string sPSNId)
|
Get Games from user sPSNId
|
|
List<Game>
|
GetGames (string sPSNId, CookieContainer cookies)
|
Get Games from user sPSNId using a specific account
|
|
void
|
GetGamesAsync (string sPSNId)
|
Get Games from user sPSNId (Async Call)
|
|
void
|
GetGamesAsync (string sPSNId, CookieContainer cookies)
|
Get Games from user sPSNId using a specific account (Async Call)
|
|
List<Trophy>
|
GetTrophies (string sPSNId, string sGameId)
|
Get Trophies from user sPSNId and game sGameId
|
|
List<Trophy>
|
GetTrophies (string sPSNId, string sGameId, CookieContainer cookies)
|
Get Trophies from user sPSNId and game sGameId using a specific account
|
|
void
|
GetTrophiesAsync (string sPSNId, string sGameId)
|
Get Trophies from user sPSNId and game sGameId (Async Call)
|
|
void
|
GetTrophiesAsync (string sPSNId, string sGameId, CookieContainer cookies)
|
Get Trophies from user sPSNId and game sGameId using a specific account
(Async Call)
|
|
List<PSNID>
|
GetFriends ()
|
Get List of Friends of the account defined with SetIdentity
|
|
List<PSNID>
|
GetFriends(string sPSNId, CookieContainer cookies)
|
Get List of Friends of User sPSNId
|
|
void
|
GetFriendsAsync ()
|
Get List of Friends of the account defined with SetIdentity (Async Call)
|
|
void
|
GetFriendsAsync (string sPSNId, CookieContainer cookies)
|
Get List of Friends of User sPSNId (Async Call)
|
|
PSNID
|
GetFriend (string sFriend)
|
Get Profile of Friend sFriend of the account defined with SetIdentity
|
|
PSNID
|
GetFriend (string sPSNId, string sFriend, CookieContainer cookies)
|
Get Profile of Friend sFriend of User sPSNId
|
|
void
|
GetFriendAsync (string sFriend)
|
Get Profile of Friend sFriend of the account defined with SetIdentity (Async Call)
|
|
void
|
GetFriendAsync (string sPSNId, string sFriend, CookieContainer cookies)
|
Get Profile of Friend sFriend of User sPSNId (Async Call)
|
|
List<PSNID>
|
GetFriendsWithStatus ()
|
Get List of Friends & Profiles of the account defined with SetIdentity
|
|
List<PSNID>
|
GetFriendsWithStatus (string sPSNId, CookieContainer cookies)
|
Get List of Friends & Profiles of User sPSNId
|
|
void
|
GetFriendsWithStatusAsync ()
|
Get List of Friends & Profiles of the account defined with SetIdentity (Async
Call)
|
|
void
|
GetFriendsWithStatusAsync (string sPSNId, CookieContainer cookies)
|
Get List of Friends & Profiles of User sPSNId (Async Call)
|
|
List<Game>
|
GetListOfGames ()
|
Get List of all Games using PSNAPI WebServices
|
|
void
|
GetListOfGamesAsync ()
|
Get List of all Games using PSNAPI WebServices (Async Call)
|
|
List<Game>
|
GetListOfGames (string sGameId)
|
Get Game sGameId using PSNAPI WebServices
|
|
void
|
GetListOfGamesAsync (string sGameId)
|
Get Game sGameId using PSNAPI WebServices (Async Call)
|
|
List<Trophy>
|
GetListOfTrophies (string sGameId)
|
Get List of Trophies of game sGameId using PSNAPI WebServices
|
|
void
|
GetListOfTrophiesAsync (string sGameId)
|
Get List of Trophies of game sGameId using PSNAPI WebServices (Async Call)
|
|
bool
|
isNewVersionAvailable ()
|
Return TRUE if there is a new version of the API available
|