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