Im trying to write a List of 'Documents' from an XML string, but i was wondering what is the best way to get the value of a node of certain attribute.
More specifically in the sample I would like to set the value of aDocument.Source to the text "The Source" of the "field" node that has the "Source" value for the "name" attribute.
Sample XML:
<doc>
<docitem>3</docitem>
<docid>129793</docid>
<doctitle>Some Title</doctitle>
<docdate>2009-07-03</docdate>
<metadata>
<field name="Date">2009-07-03 14:45:00</field>
<field name="SourceArea">The Source Area</field>
<field name="Source">The Source</field>
<field name="Organisation">Some Organisation</field>
</metadata>
<summary>
<summarytext>Some Summary</summarytext>
</summary>
</doc>
Sample Code
protected override List<Document> GetDocuments(string xmlString)
{
//Parse the string
XDocument xDocument = XDocument.Parse(xmlString);
//Create a List of Document objects, from the doc xml element.
List<Document> documents = (from doc in xDocument.Descendants("doc")
select new Document
{
DocId = Convert.ToInt32(doc.Element("docid").Value),
DocTitle = doc.Element("doctitle").Value,
DocDateTime = DateTime.Parse(doc.Element("docdate").Value),
DocSummary = doc.Element("summary").Value,
DocBody = "",
DocUrl = doc.Element("docid").Value,
Source = "" //CODE NEEDED
}
).ToList<Document>();
return documents;
}