forum

Home / DeveloperSection / Forums / Problems accessing certain node reading xml with C#

Problems accessing certain node reading xml with C#

Jayden Bell 1967 14-Aug-2014

My XML looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <something.logger>
    <add key="LoggerId" value="8a2ff9ef-d144-4dcb-86d8-6ccaf44def20">
    </add>
    <add key="FederationId" value="00000000-0000-0000-0000-000000000000" />
  </something.logger>
 </configuration>

My code:

XmlDocument xml = new XmlDocument();
xml.Load(Some-Valid-Path);
XmlNodeList xnList =xml.SelectNodes("/configuration/something.logger");

I am trying to get the Guid (or value..) of value.

In the end i want to get the string "8a2ff9ef-d144-4dcb-86d8-6ccaf44def20"

Thanks !


c# c# 
Updated on 14-Aug-2014

Can you answer this question?


Answer

1 Answers

Liked By