Thoughts from Dan Miser RSS 2.0
 Tuesday, January 09, 2007
Some times, it is better to have a minimal format for your XML file. When using XmlSerializer, it likes to add the standard XML namespaces to the generated XML file. If you want those gone, use code like this:

public static string GetXMLFromObject(object obj)

{

    XmlSerializer xs = new XmlSerializer(obj.GetType());

 

    // Set up chain of writers

    StringBuilder sb = new StringBuilder();

    using (XmlTextWriter writer = new XmlTextWriter(new StringWriter(sb)))

    {

        writer.Formatting = Formatting.Indented;

 

        // Remove standard namespace attributes

        XmlSerializerNamespaces xsn = new XmlSerializerNamespaces();

        xsn.Add(string.Empty, string.Empty);

        xs.Serialize(writer, obj, xsn);

    }

 

    return sb.ToString();

}

The key is to create an XmlSerializerNameSpaces object, populate it with empty strings, and then pass it to the XmlSerizliazer. The result is a more compact XML file. Note that this works, despite the comment in the documentation explicitly saying that it isn't supported.

You can also use this class to add your own custom namespaces. This could be useful to prefix certain elements with a certain namespace.

Tuesday, January 09, 2007 9:52:45 AM (Central Standard Time, UTC-06:00)  #    Comments [0] -
.NET | XML
Tracked by:
http://9nx-information.info/52349099/index.html [Pingback]
http://9nb-information.info/27188654/island-getaways-chincoteague.html [Pingback]
http://9nr-information.info/70459737/fitness-bra-for-running.html [Pingback]
http://9nn-information.info/89067185/apa-research-paper-table-of-contents.html [Pingback]
http://9nn-information.info/38221050/second-largest-city-pannsylvania.html [Pingback]
http://9ne-information.info/82291156/index.html [Pingback]
http://9nk-information.info/80452457/index.html [Pingback]
http://9nc-information.info/16674537/index.html [Pingback]
http://9nb-information.info/00147849/index.html [Pingback]
http://9nj-information.info/99295731/index.html [Pingback]
http://9ny-information.info/62030248/index.html [Pingback]
http://9on-information.info/23248002/com-omega-fish-oil.html [Pingback]
http://9os-information.info/26492410/index.html [Pingback]
http://9oj-information.info/01325858/index.html [Pingback]
http://9ov-information.info/71146174/70-park-ave-hotel.html [Pingback]
http://9oe-information.info/82674979/index.html [Pingback]
http://9qi-information.info/32291201/index.html [Pingback]
http://9ou-information.info/29492209/index.html [Pingback]
http://9oh-information.info/93689261/index.html [Pingback]
http://9qk-information.info/42020625/index.html [Pingback]
http://9st-information.info/01374837/scuola-medie-statali-di-catania.html [Pingback]
http://9ro-information.info/35883223/special-carriers-murray-truck.html [Pingback]
http://9sk-information.info/08264751/cuor-merda.html [Pingback]
http://9rs-information.info/03332262/replacement-power-cord-for-electric-blanket... [Pingback]
http://9sk-information.info/42722232/index.html [Pingback]
http://9rf-information.info/95529409/dog-shedding-hair-vitamin.html [Pingback]
http://9uafk-le-informazioni.info/66173913/maraya-cherry-without-you.html [Pingback]
http://9uafm-le-informazioni.info/20110960/aggiornare-nokia-n70.html [Pingback]
http://9uaeh-le-informazioni.info/66053254/sony-costumer-information-center.html [Pingback]
http://9uafi-le-informazioni.info/84780261/index.html [Pingback]
http://9uaem-le-informazioni.info/81699514/provocare-contrazioni.html [Pingback]
http://9uaec-le-informazioni.info/61442055/natura-giuridica-ato-sicilia.html [Pingback]
http://9uaec-le-informazioni.info/75208320/index.html [Pingback]
http://9uafb-le-informazioni.info/73501546/index.html [Pingback]
http://9uaee-le-informazioni.info/40812153/index.html [Pingback]
http://9uafi-le-informazioni.info/82269487/index.html [Pingback]
http://9uaga-le-informazioni.info/92854529/index.html [Pingback]
http://9uago-le-informazioni.info/17626955/index.html [Pingback]
http://9uahp-le-informazioni.info/26334500/lavoro-minorile-ieri-oggi.html [Pingback]
http://9uahc-le-informazioni.info/97674435/index.html [Pingback]
http://9uage-le-informazioni.info/50104832/noleggio-slot-macchina.html [Pingback]
http://9uags-le-informazioni.info/93692217/index.html [Pingback]
http://9uahe-le-informazioni.info/67811912/adult-hard.html [Pingback]
http://9uahh-le-informazioni.info/05841518/parentesi-si-usano-formula-excel.html [Pingback]
Navigation
Archive
<July 2008>
SunMonTueWedThuFriSat
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2008
Dan Miser
Sign In
Statistics
Total Posts: 306
This Year: 21
This Month: 0
This Week: 0
Comments: 604
All Content © 2008, Dan Miser
DasBlog theme 'Business' created by Christoph De Baene (delarou)