Exemplo n.º 1
0
    /// <summary>
   /// Updates the authenticating user's profile background image. T
 /// </summary>
 /// <param name="oAuth"></param>
 /// <param name="image">The background image for the profile, base64-encoded. Must be a valid GIF, JPG, or PNG image of less than 800 kilobytes in size.</param>
   /// <param name="tile">Whether or not to tile the background image. </param>
   /// <param name="include_entities">The entities node will not be included when set to false.</param>
   /// <param name="skip_status">When set to either true, t or 1 statuses will not be included in the returned user objects.</param>
 /// <param name="use">Determines whether to display the profile background image or not</param>
 /// <returns></returns>
   public JArray PostAccount_Update_Profile_Background_Image(oAuthTwitter oAuth, string image, string tile, bool include_entities, bool skip_status, bool use)
   {
       Users objUser = new Users();
       JArray jarrUser = new JArray();
       jarrUser = objUser.Post_Account_Update_Profile_Background_Image(oAuth,image,tile,include_entities,skip_status,use);
       return jarrUser;
   }