C#判断远程计算机的指定端口是否打开

2021-11-03 09:47:46 浏览数 (1)

代码语言:javascript复制
using System.Net;
if(!string.IsNullOrEmpty(txtPort.Text))
{
    IPAddress ip = IPAddress.Parse(txtIp.Text);
    IPEndPoint point=new IPEndPoint(ip,int.Parse(txtPort.Text));
    try
    {
        TcpClient tcp=new TcpClient();
        tcp.Connect(point);
        MessageBox.Show("端口打开");
    }catch(Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

0 人点赞