IWMSPublishingPoint.Properties (C#)

banner art

Previous Next

IWMSPublishingPoint.Properties (C#)

The Properties property retrieves an IWMSNamedValues object containing a collection of name/value pairs for the publishing point.

Syntax

  IWMSNamedValues = IWMSPublishingPoint.Properties;

Property Value

An IWMSNamedValues object.

If this property fails, it throws an exception.

Number Description
0xC00D145AL The publishing point was already removed.

Remarks

This property is read-only. The IWMSNamedValues object contains a collection of IWMSNamedValue objects, each of which contains a name/value pair that provides attribute information about a server or publishing point.

Example Code

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

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

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

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

    // Retrieve information about each publishing point.
    for (int i = 0; i < PubPoints.Count; i++)
    {
        PubPoint = PubPoints[i];

        // Retrieve the IWMSNamedValues object
        // containing publishing point properties.
        Properties = PubPoint.Properties;
    }
}
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