Is it possible to read the setting value URL using ConfigurationManager
?
I'm trying to read this section, but all I get it's null values. I could parse it using XmlDocument... I have already looked for this question within this forum but all I get is ways to get connectionstring, which is quite easy since ConfigurationManager has a ConnectionString Method.
<applicationSettings>
<ProjectoGlobal.Properties.Settings>
<setting name="ProjectoGlobal_WebServicePg_SyncPgData" serializeAs="String">
<value>http://localhost/SarfWebService/SyncPgData.asmx</value>
</setting>
</ProjectoGlobal.Properties.Settings>
</applicationSettings>
Thanks