Class PacketLossStats
Represents packet loss statistics for a direction (upstream or downstream).
[DataContract]
public class PacketLossStats
- Inheritance
-
PacketLossStats
- Inherited Members
Constructors
PacketLossStats()
public PacketLossStats()
Properties
LossPercentage
Percentage of lost packets.
[DataMember(Name = "lossPercentage")]
public double LossPercentage { get; set; }
Property Value
Lost
Number of lost packets.
[DataMember(Name = "lost")]
public int Lost { get; set; }
Property Value
Total
Total number of packets.
[DataMember(Name = "total")]
public int Total { get; set; }