通过本文主要向大家介绍了本机公网ip地址查询,本机公网ip,本机公网ip查询,本机公网ip地址,查看本机公网ip等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
代码很简单,直接看代码
namespace Keleyi.Com
{
public class GetInternetIP
{
public static string GetIP()
{
using (var webClient = new WebClient())
{
try
{
var temp = webClient.DownloadString("http://iframe.ip138.com/ic.asp");
var ip = Regex.Match(temp, @"\[(?<ip>\d+\.\d+\.\d+\.\d+)]").Groups["ip"].Value;
return !string.IsNullOrEmpty(ip) ? ip : null;
}
catch (Exception ex)
{
return ex.Message;
}
}
}
}
}
</div>