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