<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SnippetWare.com &#187; XML</title>
	<atom:link href="http://www.snippetware.com/category/vb-net/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.snippetware.com</link>
	<description>Code snippets library</description>
	<lastBuildDate>Fri, 22 Jan 2010 12:04:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Enumerate Attributes of an XML Node</title>
		<link>http://www.snippetware.com/2009/10/15/enumerate-attributes-of-an-xml-node/</link>
		<comments>http://www.snippetware.com/2009/10/15/enumerate-attributes-of-an-xml-node/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 08:41:49 +0000</pubDate>
		<dc:creator>Zaur</dc:creator>
				<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.snippetware.com/?p=690</guid>
		<description><![CDATA[<p><a href="http://www.snippetware.com/2009/10/15/enumerate-attributes-of-an-xml-node/">Continue</a></p>]]></description>
			<content:encoded><![CDATA[<p>Author: Microsoft&nbsp;</p>
<pre class="brush: vb.net">
&#039; ----------------------------------------
&#039;  Required Imports :
&#039;
&#039;  System.Xml
&#039; ----------------------------------------

For Each attribute As XmlAttribute In node.Attributes

Next
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snippetware.com/2009/10/15/enumerate-attributes-of-an-xml-node/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add an Element to a XML Document</title>
		<link>http://www.snippetware.com/2009/10/15/add-an-element-to-a-xml-document/</link>
		<comments>http://www.snippetware.com/2009/10/15/add-an-element-to-a-xml-document/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 08:37:33 +0000</pubDate>
		<dc:creator>Zaur</dc:creator>
				<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.snippetware.com/?p=688</guid>
		<description><![CDATA[<p><a href="http://www.snippetware.com/2009/10/15/add-an-element-to-a-xml-document/">Continue</a></p>]]></description>
			<content:encoded><![CDATA[<p>Author: Microsoft<br />
Adds a new element to an XML document instance.</p>
<pre class="brush: vb.net">
&#039; ----------------------------------------
&#039;  Required Imports :
&#039;
&#039;  System.Xml
&#039; ----------------------------------------

Dim newElement As XmlNode
newElement = xmlDoc.CreateElement(&quot;Keyword&quot;)
newElement.InnerText = &quot;Value&quot;
xmlDoc.AppendChild(newElement)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snippetware.com/2009/10/15/add-an-element-to-a-xml-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

