我正在编写一个 WCF 客户端并使用 ChannelFactory 为我的服务创建代理:
[ServiceContract]
interface Service {
[OperationContract]
void Operation();
}
var proxy = ChannelFactory<MyServiceInterface>.CreateChannel(
new BasicHttpBinding(),
new EndpointAddress("http://localhost:8000/"));
我将如何获得 SessionID?代理只有基本的 Object 方法以及在 MyServiceInterface 中定义的方法。
先感谢您。