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