Share via


IWMSIPList.Remove (C#)

banner art

Previous Next

IWMSIPList.Remove (C#)

The Remove method removes an IWMSIPEntry object from the collection.

Syntax

  IWMSIPList
  .Remove(
  varIndex
  );

Parameters

varIndex

[in] Numerical or string ordinal number specifying the location of an IWMSIPEntry object to be removed from the collection.

Return Values

This method does not return a value.

If this method fails, it throws an exception.

Number Description
0x8002000B The index contained in varIndex is not valid.

Example Code

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

// Declare variables.
WMSServer Server;
IWMSPlugin Plugin;
IWMSIPAdmin IPAdmin;
IWMSIPList IPList;
IWMSIPEntry IPEntry;
string strIPAddress;
string strMask;

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

    // Retrieve the plug-in to be configured.
    Plugin = Server.EventHandlers[
                       "WMS IP Address Authorization"];

    // Retrieve the custom interface of the plug-in.
    IPAdmin = (IWMSIPAdmin)Plugin.CustomInterface;

    // Retrieve the list of banned IP addresses.
    IPList = IPAdmin.DisallowIP;

    // Remove a specific IP address from the banned list.
    IPList.Remove("128.117.93.5");
}
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