Closed
Description
Working on a Port of a WCF Client for .net core and am dealing with a missing constructor in the .net core version of WCF.
We required the ClientBase(ServiceEndpoint endpoint) to create the ClientBase object.
Edited
Add protected ClientBase(ServiceEndpoint endpoint)
to the public contract.
Add public ChannelFactory(ServiceEndpoint endpoint)
to the public contract.
Add scenario test coverage.
Fixed by #3341