IWMSAvailableIPAddresses.length (C#)

banner art

Previous Next

IWMSAvailableIPAddresses.length (C#)

The length property retrieves the number of IP addresses in the IWMSAvailableIPAddresses collection. This property is provided for JScript compatibility.

Syntax

  int = IWMSAvailableIPAddresses.length;

Property Value

int containing a specific IP address.

Remarks

This property is read-only. This is the JScript version of the IWMSAvailableIPAddresses.Count method. It is included for developers more comfortable with JScript syntax.

Example Code

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

// Declare variables.
WMSServer                   Server;
IWMSAvailableIPAddresses    AvlIPAddresses;

string                      strIPAddress;

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

    // Retrieve the IWMSAvailableIPAddresses object.
    AvlIPAddresses = Server.AvailableIPAddresses;

    // Use the length property as an iteration boundary
    // when accessing individual objects in the collection.
    for (int i = 0; i < AvlIPAddresses.length; i++)
    {
        // .
        strIPAddress = AvlIPAddresses[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