How to serialize System.Configuration.SettingsProperty - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T07:57:58Zhttp://stackoverflow.com/feeds/question/170825http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170825/how-to-serialize-system-configuration-settingsproperty0How to serialize System.Configuration.SettingsProperty Addi2008-10-04T18:44:55Z2008-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#1708470Answer by sebastian for How to serialize System.Configuration.SettingsProperty sebastian2008-10-04T18:59:57Z2008-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#1709322Answer by Bob Nadler for How to serialize System.Configuration.SettingsProperty Bob Nadler2008-10-04T20:09:11Z2008-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>