LastmileProbeOneWayResult
One-way (uplink or downlink) last mile network quality probe result.
public class LastmileProbeOneWayResult
{
public LastmileProbeOneWayResult()
{
}
public LastmileProbeOneWayResult(uint packetLossRate, uint jitter, uint availableBandwidth)
{
this.packetLossRate = packetLossRate;
this.jitter = jitter;
this.availableBandwidth = availableBandwidth;
}
public uint packetLossRate { set; get; }
public uint jitter { set; get; }
public uint availableBandwidth { set; get; }
}
Properties
- packetLossRate
- Packet loss rate.
- jitter
- Network jitter (ms).
- availableBandwidth
- Estimated available network bandwidth (bps).