상속: Portable.ViewModels.Front.IncrementalPosts, ISupportIncrementalLoading
예제 #1
0
 public void SearchPosts(string query)
 {
     if (string.IsNullOrWhiteSpace(QueryText))
     {
         return;
     }
     Posts = new IncrementalPosts(query);
 }
예제 #2
0
 public void SearchGifs(string query)
 {
     if (string.IsNullOrWhiteSpace(QueryText))
     {
         return;
     }
     query += " ext: gif";
     Gifs   = new IncrementalPosts(query);
 }