WCF:在客户端,获取端点IP地址

时间:2011-03-23 07:51:42

标签: wcf

在WCF中获取客户端的IP地址是否合适

在服务端,我们可以使用OperationContext.current。

获取IP地址

我能以同样的方式进入客户端

提前致谢

1 个答案:

答案 0 :(得分:2)

当然 - 如果您创建了客户端,则可以获得其端点:

YourServiceClient client = new YourServiceClient();
string endpointAddress = client.Endpoint.Address.Uri.ToString();