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