IWMSServer.Properties (Visual Basic .NET)

banner art

Previous Next

IWMSServer.Properties (Visual Basic .NET)

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

Imports Microsoft.WindowsMediaServices.Interop
Imports System.Runtime.InteropServices

Private Sub GetProperties()

    ' Declare variables.
    Dim Server As WMSServer
    Dim NamedValues As IWMSNamedValues

Try
    ' Create the WMSServer object.
    Server = New WMSServer()

    ' Retrieve the IWMSNamedValues interface
    ' containing server properties.
    NamedValues = Server.Properties

Catch excCom As COMException
    ' TODO: Handle COM exceptions.
Catch exc As Exception
    ' TODO: Handle errors.
Finally
    ' TODO: Clean-up code goes here.
End Try

End Sub

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