How do I serialize an XML-serializable object to an XML fragment (no XML declaration nor namespace references in the root element)?
|
Here is a hack-ish way to do it without having to load the entire output string into an XmlDocument:
|
|||||||||
|
|
You should be able to just serialize like you usually do, and then use the You may need to clear the attributes of the element first. |
|||||
|
|
By the way this is awesome. I implemented this code to make it easy to work with xml fragments as classes quickly and then you can just replace the node when finished. This makes the transition between code and xml ultra-easy. First create some extension methods.
Next Implement the required interface (marker interface--I know you are not supposed to but I think this is the perfect reason to it.)
Now all you have to do is decorate any Serializable class, you want to convert to an XElement Fragment, with the interface.
Finally test the code.
Thanks again for this amazingly useful code. |
|||||
|
|
|
|||||
|