IWMSServer.Properties (C#)

banner art

Previous Next

IWMSServer.Properties (C#)

The Properties property retrieves an IWMSNamedValues object containing a collection of name-value pairs that contain descriptive information about the server.

Syntax

  IWMSNamedValues = IWMSServer.Properties;

Property Value

An IWMSNamedValues object.

Remarks

This property is read-only. The IWMSNamedValues object contains a collection of IWMSNamedValue objects. You can use IWMSNamedValue objects to specify name-value pairs.

Example Code

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









    // Retrieve the IWMSNamedValues interface
    // containing server properties.
    NamedValues = Server.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