コード例 #1
0
ファイル: PingController.cs プロジェクト: wdikai/WebTraceRT
        public JsonResult <PingResult> Get(string host, int bufferSize, int ttl, int timeout)
        {
            PingResult result = Pinger.Send(host, bufferSize, ttl, timeout);

            return(Json <PingResult>(result));
        }
コード例 #2
0
ファイル: PingController.cs プロジェクト: wdikai/WebTraceRT
        public JsonResult <PingResult> Get(string host)
        {
            PingResult result = Pinger.Send(host);

            return(Json <PingResult>(result));
        }