Ejemplo n.º 1
0
        ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        /// <summary>
        /// Returns a collection of user_ids that the currently authenticated user does not want to receive retweets from.
        /// </summary>
        /// <param name="oAuth"></param>
        /// <param name="count"></param>
        /// <returns></returns>
        public JArray GetFriendships_No_Retweets_Id(oAuthTwitter oAuth, int count)
        {
            Friendship objFriend = new Friendship();
            JArray     jobj      = new JArray();

            jobj = objFriend.Get_Friendships_No_Retweets_Id(oAuth);
            return(jobj);
        }