码迷,mamicode.com
首页 > 其他好文 > 详细

WCF接口获取请求的IP地址

时间:2015-08-15 18:07:50      阅读:315      评论:0      收藏:0      [点我收藏+]

标签:

  //提供方法执行的上下文环境
            OperationContext context = OperationContext.Current;
            //获取传进的消息属性
            MessageProperties properties = context.IncomingMessageProperties;
            //获取消息发送的远程终结点IP和端口
            RemoteEndpointMessageProperty endpoint = properties[RemoteEndpointMessageProperty.Name] as RemoteEndpointMessageProperty;
            Logger.WriteLog("请求来直哪里:" + endpoint.Address);

 

WCF接口获取请求的IP地址

标签:

原文地址:http://www.cnblogs.com/leojon/p/4732666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!