//获取代理后的真实IP ClientIP = System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; //判断是否已经取得IP,如果没有则表示没有用代理或其它问题 if (string.IsNullOrEmpty(ClientIP)) { //直接获取IP ClientIP = System.Web.HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"]; }
C# WEBAPI获取客户端IP地址的方法
版权所有原创文章,转载请保留或注明出处:https://261k.com/post/20170828221419.html