Ejemplo n.º 1
0
        /// <summary>
        /// Allows the authenticating user to unfollow the user specified in the ID parameter.
        /// </summary>
        /// <param name="oAuth"></param>
        /// <param name="UserId"></param>
        /// <returns></returns>
        public JArray PostFriendship_Destroy(oAuthTwitter oAuth, string UserId)
        {
            Friendship objFriend = new Friendship();
            JArray     jobj      = new JArray();

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