最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C#檢測遠(yuǎn)程計(jì)算機(jī)端口是否打開的方法

 更新時(shí)間:2015年03月23日 09:54:33   作者:chongq  
這篇文章主要介紹了C#檢測遠(yuǎn)程計(jì)算機(jī)端口是否打開的方法,實(shí)例分析了C#實(shí)現(xiàn)檢測遠(yuǎn)程端口開啟的技巧,需要的朋友可以參考下

本文實(shí)例講述了C#檢測遠(yuǎn)程計(jì)算機(jī)端口是否打開的方法。分享給大家供大家參考。具體分析如下:

這段C#代碼用于檢測遠(yuǎn)程計(jì)算機(jī)的3389端口是否處理打開狀態(tài),可以根據(jù)實(shí)際需要設(shè)置其它端口

using System;
using System.Collections.Generic;
using System.Text;
using System.Net.NetworkInformation;
namespace test
{
  class Program
  {
    static void Main(string[] args)
    {
      GetTcpConnections();
    }
    public static void GetTcpConnections()
    {
      IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties();
      TcpConnectionInformation[] connections = properties.GetActiveTcpConnections();
      foreach (TcpConnectionInformation t in connections)
      {
        Console.Write("Local endpoint: {0} ", t.LocalEndPoint.ToString());
        Console.Write("Remote endpoint: {0} ", t.RemoteEndPoint.ToString());
        Console.WriteLine("{0}", t.State);
      }
      Console.WriteLine();
      Console.ReadLine();
    }
  }
}

運(yùn)行結(jié)果如下:

Local endpoint: 127.0.0.1:1025 Remote endpoint: 127.0.0.1:1026 Established
Local endpoint: 127.0.0.1:1026 Remote endpoint: 127.0.0.1:1025 Established
Local endpoint: 127.0.0.1:1028 Remote endpoint: 127.0.0.1:16992 CloseWait
Local endpoint: 127.0.0.1:1110 Remote endpoint: 127.0.0.1:4900 Established
Local endpoint: 127.0.0.1:2754 Remote endpoint: 127.0.0.1:1110 CloseWait
Local endpoint: 127.0.0.1:2762 Remote endpoint: 127.0.0.1:1110 CloseWait
Local endpoint: 127.0.0.1:2773 Remote endpoint: 127.0.0.1:1110 CloseWait
Local endpoint: 127.0.0.1:2913 Remote endpoint: 127.0.0.1:1110 CloseWait
Local endpoint: 127.0.0.1:3014 Remote endpoint: 127.0.0.1:1110 CloseWait
Local endpoint: 127.0.0.1:3531 Remote endpoint: 127.0.0.1:1110 CloseWait
Local endpoint: 127.0.0.1:4012 Remote endpoint: 127.0.0.1:1110 CloseWait
Local endpoint: 127.0.0.1:4900 Remote endpoint: 127.0.0.1:1110 Established

希望本文所述對(duì)大家的C#程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論

岑溪市| 鄂托克前旗| 金华市| 乌兰察布市| 邳州市| 柞水县| 林甸县| 安岳县| 诸城市| 涪陵区| 茌平县| 通渭县| 修武县| 旬邑县| 伊宁县| 治多县| 岐山县| 尚义县| 克拉玛依市| 江都市| 长汀县| 昌邑市| 青浦区| 介休市| 柳河县| 本溪市| 临夏市| 大理市| 东山县| 香港 | 饶河县| 佛学| 雷山县| 大竹县| 东乌珠穆沁旗| 兴化市| 五家渠市| 岳池县| 东丽区| 尖扎县| 肥城市|