Show / Hide Table of Contents

    Class NetworkMetrics

    QoE network level metrics

    Inheritance
    Object
    NetworkMetrics
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Microsoft.Skype.Bots.Media
    Assembly: Microsoft.Skype.Bots.Media.dll
    Syntax
    public class NetworkMetrics

    Constructors

    NetworkMetrics()

    Declaration
    public NetworkMetrics()

    Properties

    AverageInboundPacketLossRateInPercentage

    Average packet loss rate on the inbound media stream

    Declaration
    public double AverageInboundPacketLossRateInPercentage { get; set; }
    Property Value
    Type Description
    Double

    AverageInboundRoundTripDelay

    Average round trip delay on the inbound media stream

    Declaration
    public TimeSpan AverageInboundRoundTripDelay { get; set; }
    Property Value
    Type Description
    TimeSpan

    AverageOutboundPacketLossRateInPercentage

    Average packet loss rate on the outbound media stream

    Declaration
    public double AverageOutboundPacketLossRateInPercentage { get; set; }
    Property Value
    Type Description
    Double

    AverageOutboundRoundTripDelay

    Average round trip delay on the outbound media stream

    Declaration
    public TimeSpan AverageOutboundRoundTripDelay { get; set; }
    Property Value
    Type Description
    TimeSpan

    MaximumInboundPacketLossRateInPercentage

    Maximum packet loss rate on the inbound media stream

    Declaration
    public double MaximumInboundPacketLossRateInPercentage { get; set; }
    Property Value
    Type Description
    Double

    MaximumInboundRoundTripDelay

    Maximum round trip delay on the inbound media stream

    Declaration
    public TimeSpan MaximumInboundRoundTripDelay { get; set; }
    Property Value
    Type Description
    TimeSpan

    MaximumOutboundPacketLossRateInPercentage

    Maximum packet loss rate on the outbound media stream

    Declaration
    public double MaximumOutboundPacketLossRateInPercentage { get; set; }
    Property Value
    Type Description
    Double

    MaximumOutboundRoundTripDelay

    Maximum round trip delay on the outbound media stream

    Declaration
    public TimeSpan MaximumOutboundRoundTripDelay { get; set; }
    Property Value
    Type Description
    TimeSpan

    TotalInboundPackets

    Total number of packets received on the inbound media stream

    Declaration
    public uint TotalInboundPackets { get; set; }
    Property Value
    Type Description
    UInt32

    TotalOutboundPackets

    Total number of packets sent on the outbound media stream

    Declaration
    public uint TotalOutboundPackets { get; set; }
    Property Value
    Type Description
    UInt32
    Back to top Copyright (c) Microsoft Corporation. All rights reserved.