Class NetworkMetrics
Represents network reliability metrics collected during test execution. These metrics provide direct signals about network quality without inferring from location.
public sealed class NetworkMetrics
- Inheritance
-
NetworkMetrics
- Inherited Members
Properties
ConnectionType
Gets or sets the connection type (e.g., "WiFi", "Ethernet", "Cellular", "Unknown").
public string? ConnectionType { get; set; }
Property Value
IsOnline
Gets or sets a value indicating whether the network is available.
public bool? IsOnline { get; set; }
Property Value
- bool?
LatencyMs
Gets or sets the network latency in milliseconds (ping to Xping API).
public int? LatencyMs { get; set; }
Property Value
- int?
PacketLossPercent
Gets or sets the packet loss percentage if measurable.
public int? PacketLossPercent { get; set; }
Property Value
- int?