Get XML Nodes questions?

@Matthew2

the activity will return the XML in a representation of XNodes:

Example:
grafik
will return:
grafik

Based on this and the usage of the different API methods/properties we can e.g. find the “b” elements
grafik

However for a start of XML Processing by API / LINQ we would recommend:

  • Use the deserialize XML Activity
  • use the LINQ XML Functionalities e.g. Root, Element, Elements, Descendants…

Have a further look here:

An introduction to LINQ find here:

Some more cases here

1 Like