View Single Post
Snapshot
Junior Member
 
Join Date: Apr 2013
Posts: 12

Old December 13th, 2013, 03:46 PM
Does it ever populate?
If so do you have a schema of it or an example I can build a schema from?

I need the fields and properties to write a class.
Name, text, description, etc and is it a collection.

Right now I use this, and always returns null
public object skillabilities { get; set; }


I need this, Items in red are examples, I need the actuals.
public SkillAbilities skillabilities { get; set; }

[Serializable]
[XmlType(AnonymousType=true)]
public class SkillAbilities {
public string description { get; set; }
[XmlElement("traitcategory")]
public string[] traitcategory { get; set; }
[XmlAttribute]
public string name { get; set; }
[XmlAttribute]
public string categorytext { get; set; }
}

An example of the populated xml would also work
Snapshot is offline   #4 Reply With Quote