[SOLVED] XML Linq – find a value of XElement from nested Descendants

Issue I have a sample of the following XML response from a REST call <GetHelloWorldResponse xmlns="http://www.helloworld.com/Services/HelloWorld"> <Available xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Pool> <GameNumber>3081</GameNumber> <PoolDate>2022-04-20</PoolDate> <Category>MW</Category> <ScheduledCloseDate>2022-04-20T13:00:00</ScheduledCloseDate> <MinAllowedAST>2022-04-20T00:00:00</MinAllowedAST> <MaxAllowedAST>2022-04-20T23:59:00</MaxAllowedAST> <Randomised>false</Randomised> <Pool xmlns:a="http://www.helloworld.com/Services/Common"> <a:PoolId>10089269</a:PoolId> <a:RaceId>0</a:RaceId> <a:FixtureSeq>0</a:FixtureSeq> <a:RaceNum>0</a:RaceNum> <a:PoolType>FN</a:PoolType> <a:PoolStatus>CLOSED</a:PoolStatus> <a:PayPlacesCount>0</a:PayPlacesCount> <a:OverrideClosedInd>true</a:OverrideClosedInd> and I have this

Continue reading