程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 使用C# ping主機的方法

使用C# ping主機的方法

編輯:C#入門知識

在我們開發項目時經常會遇到要ping主機的問題,現在我封裝了一個ping主機的方法,
代碼如下:      
        /// <summary>
        /// Ping指定的主機,看能否ping通
        /// </summary>
        /// <param name="Address">(主機地址www.2cto.com)</param>
        /// <param name="TimeOut">(超時時間,默認:1s)</param>
        /// <returns>True if a response is received, false otherwise</returns>
        public static bool PingHost(string Address, int TimeOut = 1000)
        {
            using (System.Net.NetworkInformation.Ping PingSender = new System.Net.NetworkInformation.Ping())
            {
                PingOptions Options = new PingOptions();
                Options.DontFragment = true;
                string Data = "test";
                byte[] DataBuffer = Encoding.ASCII.GetBytes(Data);
                PingReply Reply = PingSender.Send(Address, TimeOut, DataBuffer, Options);
                if (Reply.Status == IPStatus.Success)
                    return true;
                return false;
            }
        }


摘自 weizhiai12的專欄

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved