Share via


IWMSNamedValues.length (C#)

banner art

Previous Next

IWMSNamedValues.length (C#)

The length property retrieves the number of name-value pairs contained in the IWMSNamedValues collection.

Syntax

  int = IWMSNamedValues.length;

Property Value

int containing the number of name-value pairs.

Remarks

This is the JScript version of the IWMSNamedValues.Count method. It is included for developers who are more comfortable with JScript syntax.

This property is read-only.

Example Code

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

// Declare variables.
WMSServer                   Server;
IWMSNamedValues             NamedValues;
IWMSNamedValue              NamedValue;

int                        iCount;

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

    // Retrieve the IWMSNamedValues object
    // containing descriptive information about the server.
    NamedValues = Server.Properties;

    // Retrieve the total count of name-value pairs.
    iCount = NamedValues.length;
}
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