PathStats

Used to obtain statistics of a specific network path.

    public class PathStats
    {
        public MultipathType type;

        public int txKBitRate;

        public int rxKBitRate;

        public PathStats()
        {
            this.type = MultipathType.Unknown;
            this.txKBitRate = 0;
            this.rxKBitRate = 0;
        }

        public PathStats(MultipathType t, int tx, int rx)
        {
            this.type = t;
            this.txKBitRate = tx;
            this.rxKBitRate = rx;
        }

    }
Since
Available since v4.6.2.

Properties

type
Type of network path. See MultipathType.
txKBitRate
Transmission bitrate of the path, in Kbps.
rxKBitRate
Reception bitrate of the path, in Kbps.