lazebird.rabbit.ping 3.0.0

dotnet add package lazebird.rabbit.ping --version 3.0.0
NuGet\Install-Package lazebird.rabbit.ping -Version 3.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="lazebird.rabbit.ping" Version="3.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add lazebird.rabbit.ping --version 3.0.0
#r "nuget: lazebird.rabbit.ping, 3.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install lazebird.rabbit.ping as a Cake Addin
#addin nuget:?package=lazebird.rabbit.ping&version=3.0.0

// Install lazebird.rabbit.ping as a Cake Tool
#tool nuget:?package=lazebird.rabbit.ping&version=3.0.0

ping

Description

Target

API

  1. public rping(Action<string> log)

    • Constructor
    • log: log output interface
  2. public void start(string addr, Hashtable opts, Action<PingReply, object> callback, object data)

    • ping session start
    • addr: ping destination address
    • opts:
      • interval: ping interval, also used to be timeout,default 1000ms
      • count: ping send count, default -1, means infinit
      • stoponloss: stop ping if there is a pkt loss
    • callback: a callback function, which will be called for all ping replies; when ping stopped, callback called with PingReply=null
    • data: argument for callback
  3. public void stop()

    • ping session stop
  4. public override string ToString()

    • ping session tostring
    • return realtime session statistics as a string

Sample

```
void ping_cb(PingReply reply, object data)
{
    if (reply == null)
    {
        ((Form)formhash["form"]).Text = "Rabbit";
        ((Button)btnhash["ping_btn"]).Text = Language.trans("开始");
    }
    else display_taskbar(reply.Status == IPStatus.Success);
    text_pingstat.Text = ping.ToString();
}
rping ping = new rping(ping_log_func);
Hashtable ping_opts = ropt.parse_opts(text_pingopt.Text);
ping.start(ping_addr, ping_opts, ping_cb, null);
```
Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0 671 6/27/2019
2.1.1 781 9/11/2018
2.1.0 791 8/15/2018
2.0.9 796 7/31/2018
2.0.6 791 7/27/2018
2.0.5 819 7/26/2018
2.0.3 794 7/23/2018
2.0.2 923 7/3/2018
2.0.1 939 7/3/2018
2.0.0 844 7/2/2018
1.0.0 912 6/28/2018

support sync and async ping request, reply callback