예제 #1
0
 internal static ReactionFeed Create(GfycatClient client, Model model, string searchText, RequestOptions options)
 {
     return(new ReactionFeed(client, searchText, options)
     {
         Content = model.Gfycats.Select(g => Gfy.Create(client, g)).ToReadOnlyCollection()
     });
 }
예제 #2
0
 internal static CurrentUserSearchFeed Create(GfycatClient client, Model model, string searchText, RequestOptions options)
 {
     return(new CurrentUserSearchFeed(client, searchText, options)
     {
         Content = model.Gfycats.Select(g => Gfy.Create(client, g)).ToReadOnlyCollection(),
         _cursor = model.Cursor
     });
 }