IWMSPublishingPoints.Count (C#)

The Count property retrieves the number of IWMSPublishingPoint objects in the IWMSPublishingPoints collection.

int = IWMSPublishingPoints.Count;

Property Value

int containing the number of IWMSPublishingPoint objects in the collection.

Remarks

This property is read-only.

Example

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

// Declare variables.
WMSServer              Server;
IWMSPublishingPoints   PubPoints;
IWMSPublishingPoint    PubPoint;

try {
    // Create a new WMSServer object.
    Server = new WMSServerClass();

    // Retrieve the IWMSPublishingPoints object.
    PubPoints = Server.PublishingPoints;

    // Use the Count property as an iteration boundary
    // when accessing individual objects in the collection.
    for (int i = 0; i < PubPoints.Count; i++)
    {
        // Retrieve an IWMSPublishingPoint object from the collection.
        PubPoint = PubPoints[i];
    }
}
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.