Parse XML response (nested path)
Currently have this:
Then I would like to get just that inner part of the xml
Because my XML has some inner array
Is there a way to get a list of those FODepartment objects directly? Or would I need to specify a whole path (which is something like
And should I parse it in any other way, than transforming from XElement-XmlDOcument-Jobject..)
Then I would like to get just that inner part of the xml
Because my XML has some inner array
FODepartment with FODepartment objects (a bit weird, ik).Is there a way to get a list of those FODepartment objects directly? Or would I need to specify a whole path (which is something like
multimap:Messages.multimap:Message2.FODepartment, but I would rather have just those FODepartment.FODepartment if is possible)And should I parse it in any other way, than transforming from XElement-XmlDOcument-Jobject..)