SearchSearchAlbums Method (String, Int32) |
doogal.co.uk Home
Searches Spotify for albums matching the specified search string.
Namespace: SpotifyAssembly: Spotify (in Spotify.dll) Version: 1.0.2.0 (1.0.2.0)
Syntaxpublic static SearchResults<Album> SearchAlbums(
string searchFor,
int page
)
Public Shared Function SearchAlbums (
searchFor As String,
page As Integer
) As SearchResults(Of Album)
public:
static SearchResults<Album^>^ SearchAlbums(
String^ searchFor,
int page
)
static member SearchAlbums :
searchFor : string *
page : int -> SearchResults<Album>
Parameters
- searchFor
- Type: SystemString
The album to search for. - page
- Type: SystemInt32
The page of results to return.
Return Value
Type:
SearchResultsAlbum
A list of matching albums and information about the total number of results available
See Also