Ejemplo n.º 1
0
        /// <summary>
        /// Allows one to enable or disable retweets and device notifications from the specified user.
        /// </summary>
        /// <param name="oAuth"></param>
        /// <param name="UserId"></param>
        /// <param name="device"></param>
        /// <returns></returns>
        public JArray PostFriendships_Update(oAuthTwitter oAuth, string UserId, bool device)
        {
            Friendship objFriend = new Friendship();
            JArray     jobj      = new JArray();

            jobj = objFriend.Post_Friendships_Update(oAuth, UserId, device);
            return(jobj);
        }