Im having trouble generating XML along the lines of this:
<Root xmlns:brk="http://somewhere">
<child1>
<brk:node1>123456</brk:node1>
<brk:node2>500000000</brk:node2>
</child1>
</Root>
This code get me most of the way but I cant get the 'brk' namespace infront of the nodes;
var rootNode = new XElement("Root");
rootNode....
I want to create a Xml file that looks something like this:
<Root xmlns:ns1="name1" xmlns:ns2="name2">
<ns1:element1 />
<ns1:element2 />
<ns2:element3 />
</Root>
How can I accomplish this using XAttribute, XElement, XNamespace, and XDocument where the namespaces are dynamically added.
...
I have several xml namespaces that expose the same schema.
I want to use a function that dynamically accepts a namespace and applies the attributes or the properties according to the specified namespace:
Public Sub ProcessElement(element As XElement, [namespace] As XNamespace)
element.<[namespace]:Property>.Remove()
End Sub
I actua...