lazebird.rabbit.ping
3.0.0
.NET Framework 4.7.2
Install-Package lazebird.rabbit.ping -Version 3.0.0
dotnet add package lazebird.rabbit.ping --version 3.0.0
<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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: lazebird.rabbit.ping, 3.0.0"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. 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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ping
Description
Target
API
public rping(Action<string> log)
- Constructor
- log: log output interface
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
public void stop()
- ping session stop
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 | Versions |
---|---|
.NET Framework | net472 net48 |
Compatible target framework(s)
Additional computed target framework(s)
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.
support sync and async ping request, reply callback