Re: [xml] moving from .Net System.Xml to libxml2

2010-08-28 Thread Rob Richards
On 8/27/10 7:11 PM, Face wrote: Hello all, I am trying to move from .Net System.Xml to libxml2 and i would like to know how can i print the element markup representing of the current node and all its child nodes using libxml2. coming from .Net background i could do this by System.Xml.XmlNode.Ou

Re: [xml] moving from .Net System.Xml to libxml2

2010-08-27 Thread Liam R E Quin
On Sat, 2010-08-28 at 02:11 +0300, Face wrote: > Hello all, > > I am trying to move from .Net System.Xml to libxml2 This doesn't answer your question directly, but may help -- look at the source of the xmllint program that comes with libxml2. It can do what you want, so, it can be an example.

[xml] moving from .Net System.Xml to libxml2

2010-08-27 Thread Face
Hello all, I am trying to move from .Net System.Xml to libxml2 and i would like to know how can i print the element markup representing of the current node and all its child nodes using libxml2. coming from .Net background i could do this by System.Xml.XmlNode.OuterXml of the current node. I tried