Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6668269
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:01:24+00:00 2026-05-26T03:01:24+00:00

Im trying to write a class to deserialize the picasa album feed. It has

  • 0

Im trying to write a class to deserialize the picasa album feed. It has been pretty good so far, got some help to get started (here) and I’m almost there. I have a problem with two fields right now.

The gphoto:bytesUsed and gphoto:numphotosremaining want deserialize. I can’t find anything wrong with it. Thankfull for any suggestions.

Url to feed: https://picasaweb.google.com/data/feed/api/user/{username}

Class code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;

namespace WindowsFormsApplication4
{
    [XmlType("feed", Namespace = "http://www.w3.org/2005/Atom")]
    [XmlRoot("feed", Namespace = "http://www.w3.org/2005/Atom")]
    public class picasa
    {
    [XmlAttribute]
    public string id { get; set; }

    [XmlAttribute]
    public string title { get; set; }

    [XmlAttribute]
    public string icon { get; set; }

    [XmlElement("link")]
    public FeedLink[] links { get; set; }

    [XmlElement("generator")]
    public FeedGenerator generator { get; set; }

    [XmlElement("author")]
    public FeedAuthor author { get; set; }

    [XmlElement(Namespace = "http://a9.com/-/spec/opensearch/1.1/")]
    public int totalResults { get; set; }

    [XmlElement("entry")]
    public FeedEntry[] entries { get; set; }

    [XmlType("entry", Namespace = "http://www.w3.org/2005/Atom")]
    public partial class FeedEntry
    {
        [XmlElement]
        public string id { get; set; }

        [XmlElement]
        public FeedCategory category { get; set; }

        [XmlElement]
        public string title { get; set; }

        [XmlElement]
        public string summary { get; set; }

        [XmlElement]
        public string rights { get; set; }

        [XmlElement("link")]
        public FeedLink[] links { get; set; }

        [XmlElement("author")]
        public FeedAuthor author { get; set; }

        [XmlElement(ElementName = "id", Namespace = "http://schemas.google.com/photos/2007")]
        public string gid { get; set; }

        [XmlElement(ElementName = "name", Namespace = "http://schemas.google.com/photos/2007")]
        public string gname { get; set; }

        [XmlElement(ElementName = "location", Namespace = "http://schemas.google.com/photos/2007")]
        public string glocation { get; set; }

        [XmlElement(ElementName = "access", Namespace = "http://schemas.google.com/photos/2007")]
        public string gaccess { get; set; }

        [XmlElement(ElementName = "timestamp", Namespace = "http://schemas.google.com/photos/2007")]
        public string gtimestamp { get; set; }

        [XmlElement(ElementName = "numphotos", Namespace = "http://schemas.google.com/photos/2007")]
        public int gnumphotos { get; set; }

        [XmlElement(ElementName = "numphotosremaining", Namespace = "http://schemas.google.com/photos/2007")]
        public int gnumphotosremaining { get; set; }

        [XmlElement(ElementName = "bytesUsed", Namespace = "http://schemas.google.com/photos/2007")]
        public int gbytesUsed { get; set; }

        [XmlElement(ElementName = "user", Namespace = "http://schemas.google.com/photos/2007")]
        public string guser { get; set; }

        [XmlElement(ElementName = "nickname", Namespace = "http://schemas.google.com/photos/2007")]
        public string gnickname { get; set; }

        [XmlElement(ElementName = "commentingEnabled", Namespace = "http://schemas.google.com/photos/2007")]
        public string gcommentingEnabled { get; set; }

        [XmlElement(ElementName = "commentCount", Namespace = "http://schemas.google.com/photos/2007")]
        public int gcommentCount { get; set; }

        [XmlElement(ElementName = "group", Namespace = "http://search.yahoo.com/mrss/")]
        public MediaGroup mgroup { get; set; }


    }

    #region XML types
    [XmlType("author", Namespace = "http://www.w3.org/2005/Atom")]
    public partial class FeedAuthor
    {
        [XmlElement(ElementName = "name", Namespace = "http://www.w3.org/2005/Atom")]
        public string name { get; set; }

        [XmlElement(ElementName = "uri", Namespace = "http://www.w3.org/2005/Atom")]
        public string uri { get; set; }
    }

    [XmlType("category", Namespace = "http://www.w3.org/2005/Atom")]
    public partial class FeedCategory
    {
        [XmlAttribute(AttributeName = "scheme", Namespace = "http://www.w3.org/2005/Atom")]
        public string scheme { get; set; }

        [XmlAttribute(AttributeName = "term", Namespace = "http://www.w3.org/2005/Atom")]
        public string term { get; set; }
    }

    [XmlType("link", Namespace = "http://www.w3.org/2005/Atom")]
    public partial class FeedLink
    {
        [XmlAttribute(AttributeName = "rel", Namespace = "http://www.w3.org/2005/Atom")]
        public string rel { get; set; }

        [XmlAttribute(AttributeName = "type", Namespace = "http://www.w3.org/2005/Atom")]
        public string type { get; set; }

        [XmlAttribute(AttributeName = "href", Namespace = "http://www.w3.org/2005/Atom")]
        public string href { get; set; }
    }

    [XmlType("generator", Namespace = "http://www.w3.org/2005/Atom")]
    public partial class FeedGenerator
    {
        [XmlAttribute(AttributeName = "version", Namespace = "http://www.w3.org/2005/Atom")]
        public string version { get; set; }

        [XmlAttribute(AttributeName = "uri", Namespace = "http://www.w3.org/2005/Atom")]
        public string uri { get; set; }

        [XmlText]
        public string text { get; set; }
    }

    [XmlType("group", Namespace = "http://search.yahoo.com/mrss/")]
    public partial class MediaGroup
    {
        [XmlElement(ElementName = "content", Namespace = "http://search.yahoo.com/mrss/")]
        public MediaContent mgcontent { get; set; }

        [XmlElement(ElementName = "credit", Namespace = "http://search.yahoo.com/mrss/")]
        public string mgcredit { get; set; }

        [XmlElement(ElementName = "description", Namespace = "http://search.yahoo.com/mrss/")]
        public MediaDescription mgdescription { get; set; }
    }

    [XmlType("content", Namespace = "http://search.yahoo.com/mrss/")]
    public partial class MediaContent
    {
        [XmlAttribute(AttributeName = "url", Namespace = "http://search.yahoo.com/mrss/")]
        public string url { get; set; }

        [XmlAttribute(AttributeName = "type", Namespace = "http://search.yahoo.com/mrss/")]
        public string type { get; set; }

        [XmlAttribute(AttributeName = "medium", Namespace = "http://search.yahoo.com/mrss/")]
        public string medium { get; set; }
    }

    [XmlType("description", Namespace = "http://search.yahoo.com/mrss/")]
    public partial class MediaDescription
    {
        [XmlAttribute("type", Namespace="http://search.yahoo.com/mrss/")]
        public string type {get;set;}

        [XmlText]
        public string description { get; set; }
    }
    #endregion
}

}

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T03:01:25+00:00Added an answer on May 26, 2026 at 3:01 am

    Your solution could be dramatically simplified making use of the .NET library for the Google Data API. Plus here is a tutorial that you might find interesting: Creating your first Picasa Web C# Application.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to write a class to serialize/deserialize something as simple as: <table
I'm trying to write an templated class with some methods/operators etc.. Now when the
I'm getting an error when trying to deserialize some data into a class. The
I'm trying to write a class that will return a string of HTML with
I'm trying to write a class in C++, but whenever I try to compile,
I'm trying to write a generic class which contains a generic TObjectList< T >
I was trying to write up a class in c++, and I came across
I'm trying to write a Date class in an attempt to learn C++. I'm
I am trying to write a container class which uses STL allocators. What I
I am trying to write a logger class for my C++ calculator, but I'm

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.