软件编程
位置:首页>> 软件编程>> C#编程>> C#编程获取IP地址的方法示例

C#编程获取IP地址的方法示例

作者:pan_junbiao  发布时间:2023-06-16 21:18:20 

标签:C#,IP地址

本文实例讲述了C#编程获取IP地址的方法。分享给大家供大家参考,具体如下:

1、获取客户端IP


/// <summary>
/// 获取客户端Ip
/// </summary>
/// <returns></returns>
public String GetClientIp()
{
 String clientIP = "";
 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];
   }
 }
 return clientIP;
}

2、服务器端获取客户端请求IP和客户端机器名称


/// <summary>
/// 服务器端获取客户端请求IP和客户端机器名称
/// </summary>
public static void GetClientInfo()
{
 OperationContext context = OperationContext.Current;
 MessageProperties messageProperties = context.IncomingMessageProperties;
 RemoteEndpointMessageProperty endpointProperty = messageProperties[RemoteEndpointMessageProperty.Name] as RemoteEndpointMessageProperty;
 HttpRequestMessageProperty requestProperty = messageProperties[HttpRequestMessageProperty.Name] as HttpRequestMessageProperty;
 string clientIp = !string.IsNullOrEmpty(requestProperty.Headers["X-Real-IP"]) ? requestProperty.Headers["X-Real-IP"] : endpointProperty.Address;
 string clientName = 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#程序设计有所帮助。

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com