FeedFetchInfoList() 공개 정적인 메소드

public static FeedFetchInfoList ( System.DateTime createdDateFrom, System.DateTime createdDateTo, int maximumRecords ) : FeedInfoList
createdDateFrom System.DateTime
createdDateTo System.DateTime
maximumRecords int
리턴 FeedInfoList
예제 #1
0
 public static FeedInfoList FeedFetchInfoList(int maximumRecords)
 {
     return(FeedRepository.FeedFetchInfoList(
                new FeedDataCriteria
     {
         SortBy = "CreatedDate",
         SortOrder = ListSortDirection.Descending,
         MaximumRecords = maximumRecords
     }));
 }
예제 #2
0
 public static FeedInfoList FeedFetchInfoList(DateTime createdDateFrom, DateTime createdDateTo, int maximumRecords)
 {
     return(FeedRepository.FeedFetchInfoList(
                new FeedDataCriteria
     {
         CreatedDate = new DateRangeCriteria(createdDateFrom, createdDateTo),
         SortBy = "CreatedDate",
         SortOrder = ListSortDirection.Descending,
         MaximumRecords = maximumRecords
     }));
 }