IWMSServer.Version (C#)

banner art

Previous Next

IWMSServer.Version (C#)

The Version property retrieves the version number of the server.

Syntax

  string = IWMSServer.Version;

Property Value

A string containing the version information.

Remarks

This property is read-only. Version information must be in an x.x.x.xxxx format and contain only numerals.

Example Code

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









    // Retrieve the version number of the server.
    strText = Server.Version;
}
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