Searches Spotify for artists 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<Artist> SearchArtists(
	string searchFor,
	int page
)
Visual Basic (Declaration)
Public Shared Function SearchArtists ( _
	searchFor As String, _
	page As Integer _
) As SearchResults(Of Artist)
Visual C++
public:
static SearchResults<Artist^>^ SearchArtists(
	String^ searchFor, 
	int page
)

Parameters

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

Return Value

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

Collapse imageSee Also