Exemplo n.º 1
0
 public static async Task <IEnumerable <ITweet> > GetUserTimeline(IUserIdentifier userIdentifier, IUserTimelineParameters timelineParameters)
 {
     return(await Sync.ExecuteTaskAsync(() => Timeline.GetUserTimeline(userIdentifier, timelineParameters)));
 }
Exemplo n.º 2
0
 public static async Task <IEnumerable <ITweet> > GetUserTimeline(IUserIdentifier userDTO, int maximumTweets = 40)
 {
     return(await Sync.ExecuteTaskAsync(() => Timeline.GetUserTimeline(userDTO, maximumTweets)));
 }
Exemplo n.º 3
0
 public static async Task <IEnumerable <ITweet> > GetUserTimeline(string userScreenName, int maximumTweets = 40)
 {
     return(await Sync.ExecuteTaskAsync(() => Timeline.GetUserTimeline(userScreenName, maximumTweets)));
 }
Exemplo n.º 4
0
 public static async Task <IEnumerable <ITweet> > GetUserTimeline(IUserTimelineRequestParameters timelineRequestParameters)
 {
     return(await Sync.ExecuteTaskAsync(() => Timeline.GetUserTimeline(timelineRequestParameters)));
 }