|
|
От: | Jolly Roger | |
| Дата: | 27.10.10 15:29 | ||
| Оценка: | |||
var binding = new NetNamedPipeBinding(...); // or any
var channelFactory = new ChannelFactory<IServiceIntf>(binding,
new EndpointAddress("net.pipe://localhost/SomeService");
IServiceIntf channel = channelFactory.CreateChannel();
channel.SomeMethod(...);