IWMSServer.OutgoingDistributionConnections (Visual Basic .NET)

banner art

Previous Next

IWMSServer.OutgoingDistributionConnections (Visual Basic .NET)

The OutgoingDistributionConnections property retrieves an IWMSOutgoingDistributionConnections object that contains a collection of the streams being distributed to the server.

Syntax

  IWMSOutgoingDistributionConnections = IWMSServer.OutgoingDistributionConnections

Property Value

An IWMSOutgoingDistributionConnections object.

Remarks

This property is read-only. For more information about distributions, see the IWMSOutgoingDistributionConnections object.

Example Code

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

Private Sub GetDistConnections()

    ' Declare variables.
    Dim Server As WMSServer
    Dim ODConnections As IWMSOutgoingDistributionConnections

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

    ' Retrieve a list of current outgoing
    ' distribution connections.
    ODConnections = Server.OutgoingDistributionConnections

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