我寫了一個繼承自CustomBinding的自定義綁定類。 我的自定義類重寫了BuildChannelFactory方法,並使用自定義ChannelFactory創建自定義通道。WCF CustomBinding配置
我在使用WCF客戶端中的自定義綁定類時遇到了困難。 我能夠用我的自定義綁定類,如果我在代碼中進行配置:
Binding myCustomBinding = new MyCustomBinding();
ChannelFactory<ICustomerService> factory =
new ChannelFactory<ICustomerService>(myCustomBinding,
new EndpointAddress("http://localhost:8001/MyWcfServices/CustomerService/"));
ICustomerService serviceProxy = factory.CreateChannel();
serviceProxy.GetData(5);
我的問題是我不知道如何在App.config文件中配置它。 它是一個customBinding元素還是一個bindingExtension元素?還有別的嗎?