Share via


IWMSOutgoingDistributionConnection.Port (C#)

banner art

Previous Next

IWMSOutgoingDistributionConnection.Port (C#)

The Port property retrieves the port number of the client receiving the distributed content.

Syntax

  int = IWMSOutgoingDistributionConnection.Port;

Property Value

int containing the port number.

Remarks

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

This property is read-only.

Example Code

using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;

// Declare variables.
WMSServer                              Server;
IWMSOutgoingDistributionConnections    Connections;
IWMSOutgoingDistributionConnection     Connection;

int                                   iValue;

try {
    // Create a new WMSServer object.
    Server = new WMSServerClass();

    // Retrieve the IWMSOutgoingDistributionConnections object.
    Connections = Server.OutgoingDistributionConnections;

    // Retrieve information about each distribution connection.
    for (int i = 0; i < Connections.Count; i++)
    {
        Connection = Connections[i];

        // Retrieve the port of the client.
        iValue = Connection.Port;
    }
}
catch (COMException comExc) {
    // TODO: Handle COM exceptions.
}
catch (Exception e) {
    // TODO: Handle exceptions.
}

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