IWMSServer.UnicastDataSinks (Visual Basic .NET)

banner art

Previous Next

IWMSServer.UnicastDataSinks (Visual Basic .NET)

The UnicastDataSinks property retrieves an IWMSPlugins object containing a collection of unicast data sink plug-ins that can be used to send data packets to a client.

Syntax

  IWMSPlugins = IWMSServer.UnicastDataSinks

Property Value

An IWMSPlugins object containing the collection of data sink plug-ins.

Remarks

This property is read-only.

Example Code

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

Private Sub GetDataSinks()

    ' Declare variables.
    Dim Server As WMSServer
    Dim Plugins As IWMSPlugins

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

    ' Retrieve the IWMSPlugins interface
    ' containing unicast data sink plug-ins.
    Plugins = Server.UnicastDataSinks

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