Share via


IWMSServerPeakCounters.OutgoingDistributionAllocatedBandwidth (C#)

banner art

Previous Next

IWMSServerPeakCounters.OutgoingDistributionAllocatedBandwidth (C#)

The OutgoingDistributionAllocatedBandwidth property retrieves the maximum bandwidth allocated to distribution connections since the last reset.

Syntax

  int = IWMSServerPeakCounters.OutgoingDistributionAllocatedBandwidth;

Property Value

int containing the bandwidth, in Kbps.

Remarks

This property is read-only. You can use the IWMSServerPeakCounters.Reset method to reset the property to the current value.

Example Code

using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;











    // Retrieve a list of peak statistics for the server.
    PeakCounters = Server.PeakCounters;

    // Retrieve the maximum distribution bandwidth used
    // since the start time.
    iValue = PeakCounters.OutgoingDistributionAllocatedBandwidth;
}
catch (COMException comExc) {
    // TODO: Handle COM exceptions.
}
catch (Exception e) {
    // TODO: Handle exceptions.
}

Requirements

Reference: Add a reference to Microsoft.WindowsMediaServices.

Namespace: Microsoft.WindowsMediaServices.Interop.

Assembly: Microsoft.WindowsMediaServices.dll.

Library: WMSServerTypeLib.dll.

Platform: Windows Server 2003 family, Windows Server 2008 family.

See Also

Previous Next