无法访问已释放的对象。 对象名:“System.ServiceModel.Channels.ServiceChannel"
无法访问已释放的对象。 对象名:“System.ServiceModel.Channels.ServiceChannel"
无法访问已释放的对象。 对象名:“System.ServiceModel.Channels.ServiceChannel"
使用以下方式创建WCF透明代理,不可使用factory.Dispose(),
或 using (ChannelFactory<T> factory = new ChannelFactory<T>(binding, address)){....}
正确的用法:
C# Code:
ChannelFactory<T> factory = new ChannelFactory<T>(binding, address);
return factory.CreateChannel();