LastmileProbeOneWayResult
Results of the uplink or downlink last-mile network test.
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; }
}
Attributes
- packetLossRate
- The packet loss rate (%).
- jitter
- The network jitter (ms).
- availableBandwidth
- The estimated available bandwidth (bps).