Exemple #1
0
 public void StationSearchNew(string query)
 {
     RunTask(() =>
     {
         List <SearchResult> result = _pandora.Search(query);
         SearchResult?.Invoke(this, result);
     });
 }
Exemple #2
0
 public void StationSearchNew(string query)
 {
     RunTask(() =>
     {
         List <SearchResult> result = _pandora.Search(query);
         if (SearchResult != null)
         {
             SearchResult(this, result);
         }
     });
 }