Share via


IWMSOutgoingDistributionConnection.NetworkAddress (Visual Basic .NET)

banner art

Previous Next

IWMSOutgoingDistributionConnection.NetworkAddress (Visual Basic .NET)

The NetworkAddress property retrieves the network address of the client receiving the distributed content.

Syntax

  String = IWMSOutgoingDistributionConnection.NetworkAddress

Property Value

A String containing the network address.

Remarks

The network address is returned by the socket on the Windows Media server. Therefore, the address can be that of the server receiving the content, but it can also be the address of the firewall, the network address translator, or the router, if these are in the network path.

This property is read-only.

Example Code

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

Private Sub GetIPAddress()

    ' Declare variables.
    Dim Server As WMSServer
    Dim Connections As IWMSOutgoingDistributionConnections
    Dim Connection As IWMSOutgoingDistributionConnection
    Dim strAddress As String

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 IP address of the client.
        strAddress = Connection.NetworkAddress
    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