Example #1
0
 /// <summary>
 /// Provides a simple, relevance-based search interface to public user
 /// accounts on Twitter. Try querying by topical interest, full name,
 /// company name, location, or other criteria. Exact match searches are
 /// not supported.
 /// </summary>
 /// <param name="options">The search options.</param>
 public TwitterUsersSearchResponse Search(TwitterUsersSearchOptions options)
 {
     return(TwitterUsersSearchResponse.ParseResponse(Raw.Search(options)));
 }
 /// <summary>
 /// Provides a simple, relevance-based search interface to public user
 /// accounts on Twitter. Try querying by topical interest, full name,
 /// company name, location, or other criteria. Exact match searches are
 /// not supported.
 /// </summary>
 /// <param name="query">The search query to run against people search.</param>
 /// <param name="options">The search options.</param>
 public TwitterUsersSearchResponse Search(string query, TwitterUsersSearchOptions options)
 {
     return(TwitterUsersSearchResponse.ParseJson(Raw.Search(query, options)));
 }