IWMSOutgoingDistributionConnections.Refresh (C#)

banner art

Previous Next

IWMSOutgoingDistributionConnections.Refresh (C#)

The Refresh method updates the list of IWMSOutgoingDistributionConnection objects in the IWMSOutgoingDistributionConnections collection.

Syntax

  IWMSOutgoingDistributionConnections
  .Refresh();

Parameters

This method takes no parameters.

Return Values

This method does not return a value.

Remarks

You can use the Refresh method to update the IWMSOutgoingDistributionConnections collection after a client has been disconnected. For more information, see IWMSOutgoingDistributionConnection.Status.

Example Code

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

// Declare variables.
WMSServer                              Server;
IWMSOutgoingDistributionConnections    Connections;

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

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

    // Refresh the collection of distribution connections in
    // case any states have changed.
    Connections.Refresh();
}
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