IWMSAdminNetworkDataSourcePlugin.DeleteAllUDPPortRanges (Visual Basic .NET)

banner art

Previous Next

IWMSAdminNetworkDataSourcePlugin.DeleteAllUDPPortRanges (Visual Basic .NET)

The DeleteAllUDPPortRanges method removes all of the UDP/TCP port number ranges that can be used by the data source plug-in to receive data.

Syntax

  IWMSAdminNetworkDataSourcePlugin
  .DeleteAllUDPPortRanges()

Parameters

This method takes no parameters.

Return Values

This method does not return a value.

If this method fails, it throws an exception.

Number Description
0xC00D138D The specified node in the namespace file could not be found.

Example Code

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

Private Sub DeleteAllRanges()

    ' Declare variables.
    Dim Server As WMSServer
    Dim Plugin As IWMSPlugin
    Dim AdminNetDataSrc As IWMSAdminNetworkDataSourcePlugin

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

    ' Retrieve the plug-in to be configured.
    Plugin = Server.DataSources.Item("WMS Network Data Source")

    ' Retrieve the custom interface of the plug-in.
    AdminNetDataSrc = Plugin.CustomInterface

    ' Remove all current UDP port ranges.
    AdminNetDataSrc.DeleteAllUDPPortRanges()

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