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

Parameters

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

Return Value

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

Collapse imageSee Also