IWMSOutgoingDistributionConnection.WrapperPlaylist (Visual Basic .NET)

banner art

Previous Next

IWMSOutgoingDistributionConnection.WrapperPlaylist (Visual Basic .NET)

The WrapperPlaylist property retrieves the client's wrapper playlist object.

Syntax

  IWMSPlaylist =
  
  OutgoingDistributionConnection
  .WrapperPlaylist

Property Value

An IWMSPlaylist object.

Remarks

This property is read-only.

Example Code

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

Private Sub GetWrapperPlaylist()

    ' Declare variables.
    Dim Server As WMSServer
    Dim Connections As IWMSOutgoingDistributionConnections
    Dim Connection As IWMSOutgoingDistributionConnection
    Dim Playlist As IWMSPlaylist

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

    ' Retrieve the IWMSOutgoingDistributionConnections object.
    Connections = Server.OutgoingDistributionConnections

    ' Retrieve information about each distribution connection.
    For Each Connection In Connections
        ' Retrieve the wrapper playlist used by the client
        ' if one exists.
        Playlist = Connection.WrapperPlaylist
    Next

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