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
)
Visual Basic (Declaration)
Public Shared Function SearchAlbums ( _
	searchFor As String _
) As SearchResults(Of Album)
Visual C++
public:
static SearchResults<Album^>^ SearchAlbums(
	String^ searchFor
)

Parameters

searchFor
Type: System..::.String
The album to search for.

Return Value

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

Collapse imageSee Also