C#编程获取IP地址的方法示例
本文实例讲述了C#编程获取IP地址的方法。分享给大家供大家参考,具体如下:
1、获取客户端IP
///<summary>
///获取客户端Ip
///</summary>
///<returns></returns>
publicStringGetClientIp()
{
StringclientIP="";
if(System.Web.HttpContext.Current!=null)
{
clientIP=System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if(string.IsNullOrEmpty(clientIP)||(clientIP.ToLower()=="unknown"))
{
clientIP=System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_REAL_IP"];
if(string.IsNullOrEmpty(clientIP))
{
clientIP=System.Web.HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
}
}
else
{
clientIP=clientIP.Split(',')[0];
}
}
returnclientIP;
}
2、服务器端获取客户端请求IP和客户端机器名称
///<summary>
///服务器端获取客户端请求IP和客户端机器名称
///</summary>
publicstaticvoidGetClientInfo()
{
OperationContextcontext=OperationContext.Current;
MessagePropertiesmessageProperties=context.IncomingMessageProperties;
RemoteEndpointMessagePropertyendpointProperty=messageProperties[RemoteEndpointMessageProperty.Name]asRemoteEndpointMessageProperty;
HttpRequestMessagePropertyrequestProperty=messageProperties[HttpRequestMessageProperty.Name]asHttpRequestMessageProperty;
stringclientIp=!string.IsNullOrEmpty(requestProperty.Headers["X-Real-IP"])?requestProperty.Headers["X-Real-IP"]:endpointProperty.Address;
stringclientName=Environment.MachineName;
Console.WriteLine("ClientIp:"+clientIp+"clientName:"+clientName);
}
PS:这里再为大家推荐几款IP相关工具供大家参考使用:
IP地址归属地在线查询工具:
http://tools.jb51.net/aideddesign/ipcha
在线IP地址/子网掩码计算与转换工具:
http://tools.jb51.net/aideddesign/ip_net_calc
在线网络计算器|TCP/IP子网掩码计算与换算工具:
http://tools.jb51.net/aideddesign/ipcalc
更多关于C#相关内容感兴趣的读者可查看本站专题:《C#程序设计之线程使用技巧总结》、《WinForm控件用法总结》、《C#中XML文件操作技巧汇总》、《C#常见控件用法教程》、《C#数据结构与算法教程》、《C#数组操作技巧总结》及《C#面向对象程序设计入门教程》
希望本文所述对大家C#程序设计有所帮助。