I need to build a small application to read/set the figure in app.config file, which in remoting section channel port value,
how to do it programmatically?
as following example, how can I read/set the 209 value in coding?
pls help!Thanks!
-----------------------------------------------------------------
<system.runtime.remoting>
<customErrors mode="off"/>
<application>
<channels>
<channel ref="tcp" port="209">
<serverProviders>
<provider ref="wsdl" />
<formatter ref="soap" typeFilterLevel="Full" />
<formatter ref="binary" typeFilterLevel="Full" />
</serverProviders>
</channel>
</channels>
<service>
<wellknown mode="Singleton" .....
</service>
</application>
</system.runtime.remoting>