前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >c#下实现ping操作代码

c#下实现ping操作代码

原创
作者头像
用户8671053
修改2021-11-02 15:58:09
9230
修改2021-11-02 15:58:09
举报
文章被收录于专栏:码农的生活码农的生活

c#下实现ping操作代码 这里我写的是一个窗体程序。首先添加textbox,listbox,button控件,其中textbox录入域名或IP,listbox显示结果.

代码语言:javascript
复制
 private void button1_Click(object sender, EventArgs e)
  {
  Ping p1 = new Ping(); //只是演示,没有做错误处理
  PingReply reply = p1.Send(this.textBox1.Text);//阻塞方式 displayReply(reply); //显示结果 } private void displayReply(PingReply reply) //显示结果
  {
  StringBuilder sbuilder ;
  if (reply.Status == IPStatus.Success)
  {
  sbuilder = new StringBuilder();
  sbuilder.Append(string.Format("Address: {0} ", reply.Address.ToString ()));
  sbuilder.Append(string.Format("RoundTrip time: {0} ", reply.RoundtripTime));
  sbuilder.Append(string.Format("Time to live: {0} ", reply.Options.Ttl));
  sbuilder.Append(string.Format("Don't fragment: {0} ", reply.Options.DontFragment));
  sbuilder.Append(string.Format("Buffer size: {0} ", reply.Buffer.Length));
  listBox1.Items.Add(sbuilder.ToString());
  }
  }[nextpage]
  也可以做异步的处理,修改button1_click,并添加PingCompletedCallBack方法
  private void button1_Click(object sender, EventArgs e)
  {
  Ping p1 = new Ping();
  p1.PingCompleted += new PingCompletedEventHandler(this.PingCompletedCallBack);//设置PingCompleted事件处理程序
  p1.SendAsync(this.textBox1.Text, null);
  }
  private void PingCompletedCallBack(object sender, PingCompletedEventArgs e)
  {
  if (e.Cancelled)
  {
  listBox1.Items.Add("Ping Canncel");
  return;
  }
  if (e.Error != null)
  {
  listBox1.Items.Add(e.Error.Message);
  return;
  }
  StringBuilder sbuilder;
  PingReply reply = e.Reply;
  if (reply.Status == IPStatus.Success)
  {
  sbuilder = new StringBuilder();
  sbuilder.Append(string.Format("Address: {0} ", reply.Address.ToString()));
  sbuilder.Append(string.Format("RoundTrip time: {0} ", reply.RoundtripTime));
  sbuilder.Append(string.Format("Time to live: {0} ", reply.Options.Ttl));
  sbuilder.Append(string.Format("Don't fragment: {0} ", reply.Options.DontFragment));
  sbuilder.Append(string.Format("Buffer size: {0} ", reply.Buffer.Length));
  listBox1.Items.Add(sbuilder.ToString());
  }
  }

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档