zoukankan      html  css  js  c++  java
  • C# Ping类的例子,可用于测试网络,主机响应时间等

    http://blog.csdn.net/andrew_wx/article/details/6628501

    using System.Net.NetworkInformation;  
    namespace PingExample
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
    
            private void btn_StartPing_Click(object sender, EventArgs e)
            {
                this.lst_PingResult.Items.Clear();
                //远程服务器IP
                string ipStr = txt_IPAddress.Text.ToString().Trim();
                //构造Ping实例
                Ping pingSender = new Ping();
                //Ping 选项设置
                PingOptions options = new PingOptions();
                options.DontFragment = true;
                //测试数据
                string data = "test data abcabc";
                byte[] buffer = Encoding.ASCII.GetBytes(data);
                //设置超时时间
                int timeout = 120;
                //调用同步 send 方法发送数据,将返回结果保存至PingReply实例
                PingReply reply = pingSender.Send(ipStr, timeout, buffer, options);
                if (reply.Status == IPStatus.Success)
                {
                    lst_PingResult.Items.Add("答复的主机地址:" + reply.Address.ToString());
                    lst_PingResult.Items.Add("往返时间:" + reply.RoundtripTime);
                    lst_PingResult.Items.Add("生存时间(TTL):" + reply.Options.Ttl);
                    lst_PingResult.Items.Add("是否控制数据包的分段:" + reply.Options.DontFragment);
                    lst_PingResult.Items.Add("缓冲区大小:" + reply.Buffer.Length);
                }
                else
                    lst_PingResult.Items.Add(reply.Status.ToString());
            }
        }
    }
  • 相关阅读:
    css 盒模型
    Dom事件类-文档对象模型
    BFC-边距重叠解决方案
    三栏布局的五种方式--左右固定,中间自适应
    为什么必须先写组件再写vue的实例
    H5跳小程序安卓机出现白屏的问题
    关于iframe标签的src属性
    子组件让父组件进行刷新vuex
    html 插件
    git 其他merge
  • 原文地址:https://www.cnblogs.com/daming1233/p/6598028.html
Copyright © 2011-2022 走看看