The below Wcf error message is quite rare. You would encounter it only when developing some specific kinds of Wcf custom channels and transports.
When you develop a custom channel you usually develop one class which derives from BindingElement and another which implements IChannelFactory. Both classes have this method:
In runtime, Wcf verifies that the capabilities the factory claims it can support are also supported by the actual channel. In other words this must be true:
channel.GetProperty()==factory.GetProperty()
If you have override the GetProperty() method of the channel but not of the factory then you will get the error above.
1 comments:
Thx alot! Helped me a bunch
Post a Comment