标签: wcf
在WCF中获取客户端的IP地址是否合适
在服务端,我们可以使用OperationContext.current。
我能以同样的方式进入客户端
提前致谢
答案 0 :(得分:2)
当然 - 如果您创建了客户端,则可以获得其端点:
YourServiceClient client = new YourServiceClient(); string endpointAddress = client.Endpoint.Address.Uri.ToString();