エンドポイントは以下のように app.config に作成されますが、異なるアドレスを持つ複数のエンドポイントを作成するにはどうすればよいですか?
app.config :
<service name="PokerService.PlayerService" behaviorConfiguration="ServiceBehaviorPlayer">
<host>
<baseAddresses>
<add baseAddress="net.tcp://localhost:5054" />
</baseAddresses>
</host>
<!-- Service Endpoints -->
<endpoint address="player" binding="netTcpBinding" bindingConfiguration="PlayerBinding" contract="PokerService.IPlayerService" />
<endpoint address="player/mex" binding="mexTcpBinding" name="ServiceBehaviorPlayer" contract="IMetadataExchange" />
</service>
</services>
しかし、どうすればこのように生成できTcp//localhost/player/1 ( 1-1000)
ますか?