码迷,mamicode.com
首页 > Web开发 > 详细

.NET 客户IP地址捕捉

时间:2016-11-18 11:59:29      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:rem   etc   bsp   get   net   ddr   attr   client   tcl   

MVC模式下要获取客户IP可以在ActionFilterAttribute中进行拦截

1 filterContext.HttpContext.Request.UserHostAddress

同样,在WebAPI中也可以用同样的方式获取,只是继承自System.Web.Http.Filters.ActionFilterAttribute

 1 private string GetClientIP(HttpActionContext actionContext)
 2         {
 3             if (actionContext.Request.Properties.ContainsKey("MS_HttpContext"))
 4             {
 5                 return ((HttpContextWrapper)actionContext.Request.Properties["MS_HttpContext"]).Request.UserHostAddress;
 6             }
 7 
 8             if (actionContext.Request.Properties.ContainsKey(RemoteEndpointMessageProperty.Name))
 9             {
10                 RemoteEndpointMessageProperty prop;
11                 prop = (RemoteEndpointMessageProperty)actionContext.Request.Properties[RemoteEndpointMessageProperty.Name];
12                 return prop.Address;
13             }
14 
15             return null;
16         }

 

.NET 客户IP地址捕捉

标签:rem   etc   bsp   get   net   ddr   attr   client   tcl   

原文地址:http://www.cnblogs.com/zc-bao/p/customerIP_get.html

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