国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#檢測遠程計算機端口是否打開的方法

2020-01-24 02:07:22
字體:
供稿:網(wǎng)友

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

這段C#代碼用于檢測遠程計算機的3389端口是否處理打開狀態(tài),可以根據(jù)實際需要設(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();    }  }}

運行結(jié)果如下:

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

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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 集贤县| 化州市| 新蔡县| 庆城县| 南投县| 雅江县| 津市市| 萝北县| 江都市| 田林县| 东乌珠穆沁旗| 乐平市| 红安县| 泸州市| 吴川市| 汝州市| 永寿县| 繁峙县| 阿瓦提县| 江源县| 肃北| 定襄县| 黎川县| 鄂伦春自治旗| 锦州市| 定边县| 墨江| 将乐县| 芦溪县| 汾阳市| 扎兰屯市| 安义县| 陇西县| 嘉祥县| 安图县| 洮南市| 高安市| 泗水县| 武夷山市| 磐安县| 旬邑县|