这是我在win form client
中的城堡配置
<components>
<component id="TestServiceClient"
type="TcpService.ITestService, TcpService"
wcfEndpointConfiguration="TestServiceClient_endpoint"/>
</components>
问题是如何设置我的配置以支持DuplexClientModel? 我只能通过以下代码执行此操作。
DuplexClientModel model = new DuplexClientModel
{
Endpoint = WcfEndpoint.ForContract<ITestServiceWithCallback>()
.BoundTo(new NetTcpBinding())
.At("net.tcp://localhost/TestServiceWithCallback")
}.Callback(callbackService);