Share via


IWMSOutgoingDistributionConnections.RemoveAll (Visual Basic .NET)

banner art

Previous Next

IWMSOutgoingDistributionConnections.RemoveAll (Visual Basic .NET)

The RemoveAll method removes all IWMSOutgoingDistributionConnection objects from the IWMSOutgoingDistributionConnections collection.

Syntax

  IWMSOutgoingDistributionConnections
  .RemoveAll()

Parameters

This method does not take any parameters.

Return Values

This method does not return a value.

Example Code

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

Private Sub RemoveAllConnections()

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

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

    ' Retrieve the IWMSOutgoingDistributionConnections object.
    Connections = Server.OutgoingDistributionConnections

    ' Remove all of the connections from the collection.
    Connections.RemoveAll()

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