In the old days (.net framework 3.5) we need to be careful to close the WCF client proxies.
In WCF 4 the Close is not available from the client. But it is available inside the proxy.
public class ServiceProxy : System.ServiceModel.ClientBase<IService>, ILoginService
{
}
Is closing the client proxy no longer required? Or how do we do it?