Share via


IWMSBoundIPAddresses.Item (C#)

banner art

Previous Next

IWMSBoundIPAddresses.Item (C#)

The Item property retrieves a specific object from the IWMSBoundIPAddresses collection.

Syntax

  IWMSBoundIPAddresses = IWMSBoundIPAddresses
  [
  varIndex
  ];

Parameters

varIndex

[in] object containing the index of the IWMSBoundIPAddresses object.

Property Value

An IWMSBoundIPAddresses object.

If this property fails, it throws an exception.

Number Description
0x8002000B The index contained in varIndex is not valid.

Example Code

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

// Declare variables.
WMSServer Server;
IWMSPlugin Plugin;
IWMSCPPluginAdmin CPAdmin;
IWMSBoundIPAddresses BoundIPAddresses;

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

    // Retrieve the plug-in to be configured.
    Plugin = Server.ControlProtocols[
                        "WMS RTSP Server Control Protocol"];

    // Retrieve the custom interface of the plug-in.
    CPAdmin =
        (IWMSCPPluginAdmin)Plugin.CustomInterface;

    // Retrieve the list of bound IP addresses.
    BoundIPAddresses = CPAdmin.BoundIPAddresses;

    for(int i = 0; i < BoundIPAddresses.Count; i++)
    {
        // Retrieve the next bound IP address.
        string strIP = BoundIPAddresses[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.

See Also

Previous Next