在我注册一个新的 WCF 端点时,我不知道 URI 是什么......
public void Install(IWindsorContainer container, IConfigurationStore store)
{
var defaultClientModel = new DefaultClientModel
{
Endpoint = WcfEndpoint
.ForContract<IMyService>()
.BoundTo(new WSHttpBinding(SecurityMode.None))
.At( URI??? )
};
container.Register(WcfClient.ForChannels(defaultClientModel));
}
有什么方法可以在请求 IMyService 实例时从容器中检索 URI(这是已知的)?
是否可以使用工厂方法/动态参数之类的东西?