You will have to change the default XML deserializer to DotNetXmlDeserializer, for example:
RestClient client;
client.AddHandler("application/xml", new DotNetXmlDeserializer());
Then add the attribute XmlElementto the property List<timhotPhotos> timhotPhotosas follows:
public class fullWall
{
public _user user { get; set; }
public int numberOfFriend { get; set; }
public int numberOfPhoto { get; set; }
[System.Xml.Serialization.XmlElement()]
public List<timhotPhotos> timhotPhotos { get; set; }
public fullWall()
{
timhotPhotos = new List<timhotPhotos>();
}
}
!