Method | Description | |
---|---|---|
BBRequest ( |
Sends a request for the score of a single song. The response will contain a single SongParameters item with the song and it's score
|
|
BBRequest ( |
Sends an upload request with a single song and either an upvote or a downvote. The server will check the database for that song. If the song exists, it will add the vote to it, otherwise it will add the song to the server and save it with the vote. The response will contain a single SongParameters item with the song and it's score
|
|
BBRequest ( int numberOfSongs ) : System |
Sends a request for a list of songs that match the given parameters. If a parameter is null, it will match all values for that parameter. The response will contain a list of songs that match the parameters.
|
|
BBRequest ( int numberOfSongs, string genre, string username ) : System |
public BBRequest ( |
||
song | Song to check the score of | |
userInfo | The user authentication token | |
return | System |
public BBRequest ( |
||
song | Song to upload | |
upOrDownvote | bool | Vote. True if an upvote, false otherwise. |
userInfo | The user authentication token | |
return | System |
public BBRequest ( int numberOfSongs ) : System | ||
numberOfSongs | int | Number of songs to return |
return | System |
public BBRequest ( int numberOfSongs, string genre, string username ) : System | ||
numberOfSongs | int | |
genre | string | |
username | string | |
return | System |