LastmileProbeResult
Uplink and downlink last mile network quality probe result.
public class LastmileProbeResult
{
public LastmileProbeResult()
{
state = LASTMILE_PROBE_RESULT_STATE.LASTMILE_PROBE_RESULT_UNAVAILABLE;
rtt = 0;
}
public LastmileProbeResult(LASTMILE_PROBE_RESULT_STATE state, LastmileProbeOneWayResult uplinkReport,
LastmileProbeOneWayResult downlinkReport, uint rtt)
{
this.state = state;
this.uplinkReport = uplinkReport;
this.downlinkReport = downlinkReport;
this.rtt = rtt;
}
public LASTMILE_PROBE_RESULT_STATE state { set; get; }
public LastmileProbeOneWayResult uplinkReport { set; get; }
public LastmileProbeOneWayResult downlinkReport { set; get; }
public uint rtt { set; get; }
}
Properties
- state
- The state of the last mile probe result. See: LASTMILE_PROBE_RESULT_STATE.
- uplinkReport
- Uplink network quality report. See LastmileProbeOneWayResult.
- downlinkReport
- Downlink network quality report. See LastmileProbeOneWayResult.
- rtt
- Round-trip time (ms).