hallo everyone,
iam getting a xmlnodelist and how can i read the attributes of it ?..
.
i want to read the rdf:about in that sioc:item..
Thank you.
iam getting a xmlnodelist and how can i read the attributes of it ?..
Code:
This is my code line.
XmlNodeList doc = xdoc.GetElementsByTagName("sioc:Item");
my xml file
- <sioc:Item rdf:about="http://www.blabla.com">
<sioc:link rdf:resource="http://www.blabla.com" />
<dc:title>File3.pptx</dc:title>
<rdfs:label>File3.pptx</rdfs:label>
<dc:description>checking</dc:description>
<content:encoded>checking</content:encoded>
<dc:identifier>1469646</dc:identifier>
<dcterms:extent>1811947</dcterms:extent>
<dc:type>application/vnd.ms-powerpoint.presentation.12</dc:type>
<dcterms:created>2008-11-12T12:27:25Z</dcterms:created>
<dcterms:modified>2008-11-17T09:36:46Z</dcterms:modified>
- <sioc:has_creator>
- <sioc:User rdf:about="http://www.blabla.com">
<rdfs:label>dinesh</rdfs:label>
</sioc:User>
</sioc:has_creator>
</sioc:Item>
</rdf:RDF>
i want to read the rdf:about in that sioc:item..
Thank you.
Comment