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
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 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
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 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.
support sync and async ping request, reply callback