Searches Spotify for albums matching the specified search string.

Namespace:  Spotify
Assembly:  Spotify (in Spotify.dll) Version: 1.0.2.0 (1.0.2.0)

Collapse imageSyntax

C#
public static SearchResults<Album> SearchAlbums(
	string searchFor,
	int page
)
Visual Basic (Declaration)
Public Shared Function SearchAlbums ( _
	searchFor As String, _
	page As Integer _
) As SearchResults(Of Album)
Visual C++
public:
static SearchResults<Album^>^ SearchAlbums(
	String^ searchFor, 
	int page
)

Parameters

searchFor
Type: System..::.String
The album to search for.
page
Type: System..::.Int32
The page of results to return.

Return Value

A list of matching albums and information about the total number of results available

Collapse imageSee Also