Пример #1
0
    /// <summary>
  /// Sets one or more hex values that control the color scheme of the authenticating user's profile page on twitter.com.
 /// </summary>
 /// <param name="oAuth"></param>
  /// <param name="profile_background_color">Profile background color.</param>
  /// <param name="profile_link_color">Profile link color.</param>
  /// <param name="profile_sidebar_border_color">Profile sidebar's border color.</param>
  /// <param name="profile_sidebar_fill_color">Profile sidebar's background color.</param>
  /// <param name="profile_text_color">Profile text color.</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>
 /// <returns></returns>
  public JArray PostAccount_Update_Profile_Colors(oAuthTwitter oAuth, string profile_background_color, string profile_link_color, string profile_sidebar_border_color, string profile_sidebar_fill_color, string profile_text_color, bool include_entities, bool skip_status, bool use)
  {
      Users objUser = new Users();
      JArray jarrUser = new JArray();
      jarrUser = objUser.Post_Account_Update_Profile_Colors(oAuth,profile_background_color,profile_link_color,profile_sidebar_border_color,profile_sidebar_fill_color,profile_text_color,include_entities,skip_status,use);
      return jarrUser;
  }