/// <summary> /// Returns a cursored collection of user objects for every user the specified user is following /// </summary> /// <param name="oAuth"></param> /// <returns></returns> public JArray GetFriends_List(oAuthTwitter oAuth) { Friendship objFriend = new Friendship(); JArray jobj = new JArray(); jobj = objFriend.Get_Friends_List(oAuth); return(jobj); }