Property | Type | Description | |
---|---|---|---|
APIKey | string |
Method | Description | |
---|---|---|
Client ( string apikey ) : Newtonsoft.Json | ||
Dispose ( ) : void | ||
GetFriendListAsync ( string steamid ) : Task |
Returns the friend list of any Steam user, provided his Steam Community profile visibility is set to "Public".
|
|
GetOwnedGamesAsync ( string steamid, bool detailedInfo = false, bool includeFreeGames = true ) : Task |
Returns a list of games a player owns along with some playtime information, if the profile is publicly visible.
|
|
GetPlayerBansAsync ( ) : Task |
Returns Community, VAC, and Economy ban statuses for given players.
|
|
GetPlayerBansAsync ( IEnumerable |
Returns Community, VAC, and Economy ban statuses for given players.
|
|
GetPlayerSummariesAsync ( ) : Task |
Returns basic profile information for a list of 64-bit Steam IDs. Some data associated with a Steam account may be hidden if the user has their profile visibility set to "Friends Only" or "Private". In that case, only public data will be returned.
|
|
GetPlayerSummariesAsync ( IEnumerable |
Returns basic profile information for a list of 64-bit Steam IDs. Some data associated with a Steam account may be hidden if the user has their profile visibility set to "Friends Only" or "Private". In that case, only public data will be returned.
|
|
GetPlayerSummariesAsync ( IEnumerable |
Returns basic profile information for a list of 64-bit Steam IDs. Some data associated with a Steam account may be hidden if the user has their profile visibility set to "Friends Only" or "Private". In that case, only public data will be returned.
|
|
IsPlayingSharedGameAsync ( string steamid, int appID ) : Task |
Returns the original owner's SteamID if a borrowing account is currently playing this game. If the game is not borrowed or the borrower currently doesn't play this game, the result is null.
|
Method | Description | |
---|---|---|
SendRequestAsync ( |
public Client ( string apikey ) : Newtonsoft.Json | ||
apikey | string | |
return | Newtonsoft.Json |
public GetFriendListAsync ( string steamid ) : Task |
||
steamid | string | |
return | Task |
public GetOwnedGamesAsync ( string steamid, bool detailedInfo = false, bool includeFreeGames = true ) : Task |
||
steamid | string | The 64 bit ID of the player. |
detailedInfo | bool | Whether or not to include additional details of apps - name and images. Defaults to false. |
includeFreeGames | bool | Whether or not to list free-to-play games in the results. Defaults to false. |
return | Task |
public GetPlayerBansAsync ( IEnumerable |
||
steamids | IEnumerable |
|
return | Task |
public GetPlayerSummariesAsync ( IEnumerable |
||
steamids | IEnumerable |
|
return | Task |
public GetPlayerSummariesAsync ( IEnumerable |
||
steamids | IEnumerable |
|
return | Task |
public IsPlayingSharedGameAsync ( string steamid, int appID ) : Task |
||
steamid | string | The SteamID of the account playing. |
appID | int | The AppID of the game currently playing |
return | Task |