<system.runtime.remoting>
のセクション(channels\channel ref="tcp" port="9090"
)からTCPポート番号を読み取ろうとしていますApp.config
。設定ファイルを以下に示します。
<?xml version="1.0"?>
<configuration>
<system.runtime.remoting>
<application Name="MyServer">
<service>
<wellknown mode="Singleton" type="MyServer.Servers.SvrConnection, MyServer" objectUri="MyConnection" />
</service>
<channels>
<channel ref="tcp" port="9090">
<serverProviders>
<formatter ref="binary" typeFilterLevel="Full" />
</serverProviders>
<clientProviders>
<formatter ref="binary" />
</clientProviders>
</channel>
</channels>
</application>
</system.runtime.remoting>
</configuration>
どうすればこれを達成できますか?助けてください。