public async Task PerformFetch(MBAutoCompleteTextField textfield, Action <IList <string> > completionHandler)
 {
     completionHandler(_unsortedData);
 }
Exemple #2
0
 public Task PerformFetch(MBAutoCompleteTextField textfield, Action <ICollection <string> > completionHandler)
 {
     completionHandler(_unsortedData);
     return(Task.CompletedTask);
 }