Users Pricing

forum

Home Forums Problems accessing certain node reading xml with C# – MindStick

Problems accessing certain node reading xml with C#

Jayden Bell 2461 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 !


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md