Why doesn't the IChannelFactory< TChannel> interface define a parameter-less CreateChannel()?
The concerete ChannelFactory< TChannel> class on the other hand does have a parameter-less CreateChannel().
For testability/SoC reasons I want to pass around IChannelFactory interface but that forces me to also pass around an EndpointAddress for use in CreateChannel(EndpointAddress).
As a workaround I have created a IChannelFactory2< IChannel> which does have a parameter-less CreateChannel().
But ultimately I'm just curious as to why it was designed like this (generally WCF has reasonable design choices, but Im just too lazy to work this one out alone!)