How to serialize System.Configuration.SettingsProperty - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:57:58Z http://stackoverflow.com/feeds/question/170825 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/170825/how-to-serialize-system-configuration-settingsproperty 0 How to serialize System.Configuration.SettingsProperty Addi 2008-10-04T18:44:55Z 2008-10-04T20:52:12Z <p>I need to serialize the System.Configuration.SettingsProperty and System.Configuration.SettingsPropertyValue class object through WCF.</p> http://stackoverflow.com/questions/170825/how-to-serialize-system-configuration-settingsproperty/170847#170847 0 Answer by sebastian for How to serialize System.Configuration.SettingsProperty sebastian 2008-10-04T18:59:57Z 2008-10-04T18:59:57Z <p>I guess you're asking because you can't return a list of SettingProperty. I would create a serializable class myself and load the properties there.</p> http://stackoverflow.com/questions/170825/how-to-serialize-system-configuration-settingsproperty/170932#170932 2 Answer by Bob Nadler for How to serialize System.Configuration.SettingsProperty Bob Nadler 2008-10-04T20:09:11Z 2008-10-04T20:52:12Z <p>Using your own class is reasonable option. You can also use the VS designer settings if you want. </p> <p>The VS designer keeps property settings in the <a href="http://msdn.microsoft.com/en-us/library/system.configuration.applicationsettingsbase.aspx" rel="nofollow">ApplicationSettingsBase</a> class. By default, these properties are serialized/deserialized into a per user XML file. Because there is no user context for a WCF service, this will not work. You can override this behavior by using a custom <a href="http://msdn.microsoft.com/en-us/library/system.configuration.settingsprovider.aspx" rel="nofollow">SettingsProvider</a> which makes it pretty easy to keep the properties where ever you want. Just add the <code>SettingsProvider</code> attribute to the VS generated <code>Settings</code> class:</p> <pre><code>[SettingsProvider(typeof(CustomSettingsProvider))] internal sealed partial class Settings { ... } </code></pre> <p>A good example of this is the <a href="http://msdn.microsoft.com/en-us/library/ms181001.aspx" rel="nofollow">RegistrySettingsProvider</a>.</p> <p>Edit: My initial read of your question thought you were asking how to persist settings in a WCF service. I see now you want to pass settings through WCF. The SettingsProvider class could also be used for this purpose.</p>