Exemplo n.º 1
0
 public static async Task <IEnumerable <IUser> > GetFriends(string userScreenName, int maxFriendsToRetrieve = 250)
 {
     return(await Sync.ExecuteTaskAsync(() => User.GetFriends(userScreenName, maxFriendsToRetrieve)));
 }
Exemplo n.º 2
0
 public static async Task <IEnumerable <IUser> > GetFriends(IUserIdentifier userIdentifier, int maxFriendsToRetrieve = 250)
 {
     return(await Sync.ExecuteTaskAsync(() => User.GetFriends(userIdentifier, maxFriendsToRetrieve)));
 }