C#判斷遠程計算機的指定端口是否打開

ybny 9年前發布 | 2K 次閱讀 C#

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);
    }
}

 本文由用戶 ybny 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!