LastmileProbeResult
Results of the uplink and downlink last-mile network tests.
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; }
}
Attributes
- state
-
The status of the last-mile network tests. See LASTMILE_PROBE_RESULT_STATE.
- uplinkReport
- Results of the uplink last-mile network test. See LastmileProbeOneWayResult.
- downlinkReport
- Results of the downlink last-mile network test. See LastmileProbeOneWayResult.
- rtt
- The round-trip time (ms).