[XmlElement(ElementName = ElementConstants.CreateDate,
Namespace = "http://api.facebook.com/1.0/",
DataType = "date", Type = typeof(DateTime))]
public DateTime CreateDate { get; set; }
And if I try taking out the DataType in the attribute I get : {"The string '1233469624' is not a valid AllXsd value."}
Here is an example of one of the node values:
<created>1230437805</created>
I'm not sure how to setup the DateTime property here for this to be successfully deserialized.