Can't really tell if you tried this or not, but I'd do something like this:
VB Code:
  1. Dim xml As New XmlDocument()
  2. xml.Load("YourFile.xml")
  3. Dim xmlMediaNodeList As XmlNodeList = xml.DocumentElement.SelectNodes("//media")
  4. If Not xmlMediaNodeList Is Nothing Then
  5.   For Each xmlMediaNode As XmlNode In xmlMediaNodeList
  6.     'do something with the node...
  7.   Next
  8. End If