顯示具有 Ping 標籤的文章。 顯示所有文章
顯示具有 Ping 標籤的文章。 顯示所有文章

星期六, 10月 02, 2010

[Asp.Net] Pinging using asp.net

要使用ping類別之前,需引入using System.Net.NetworkInformation;

public class SitePinged : System.Web.Services.WebService {

    public SitePinged () {

        //如果使用設計的元件,請取消註解下行程式碼 
        //InitializeComponent(); 
    }

    [WebMethod]
    public string Ping(string site)
    {
        Ping wsPing = new Ping();
        PingReply wsPingReply = wsPing.Send(site);
        return wsPingReply.Status.ToString();
    }
    
}

其他你感興趣的文章

Related Posts with Thumbnails