Ignore:
Timestamp:
Sep 17, 2009, 11:14:31 PM (15 years ago)
Author:
bayral
Message:

support for pwg.images.rate

Location:
extensions/PiwigoLib/PiwigoLib/Proxy
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoLib/Proxy/PwgGenericProxy.cs

    r3827 r3861  
    150150            try
    151151            {
    152  //               Console.WriteLine(xmlData.ReadToEnd());
     152                //Console.WriteLine(xmlData.ReadToEnd());
    153153
    154154                System.Xml.Serialization.XmlSerializer xsSerializer = new System.Xml.Serialization.XmlSerializer(typeof(T));
  • extensions/PiwigoLib/PiwigoLib/Proxy/Response/PwgImagesProxyResponse.cs

    r3835 r3861  
    88namespace Com.Piwigo.Lib.Proxy.Response
    99{
     10
     11    [Serializable()]
     12    [XmlRoot(ElementName = "rsp")]
     13    public class PwgImageRateProxyResponse : PwgBaseProxyReponse
     14    {
     15        [XmlElement("count")]
     16        public Int32 Count { get; set; }
     17        [XmlElement("average")]
     18        public String Average { get; set; }
     19        [XmlElement("stdev")]
     20        public String Stdev { get; set; }
     21    }
     22
    1023    [Serializable()]
    1124    [XmlRoot(ElementName = "categorie")]
     
    6376        public PwgImageListProxyResponse ImageList { get; set; }
    6477    }
     78
    6579}
Note: See TracChangeset for help on using the changeset viewer.