Exemplo n.º 1
0
 public static string getretweetsofme(GetTimelineArgs args)
 {
     return CreateStatusesText(
         twCtx.Status.Where(tweet =>
             tweet.Type == StatusType.RetweetsOfMe &&
             tweet.Count == int.Parse(args.count) &&
             tweet.Page == int.Parse(args.page)
         )
     );
 }
Exemplo n.º 2
0
 public static string getmentions(GetTimelineArgs args)
 {
     return CreateStatusesText(
         twCtx.Status.Where(tweet =>
             tweet.Type == StatusType.Mentions &&
             tweet.Count == int.Parse(args.count) &&
             tweet.Page == int.Parse(args.page)
         )
     );
 }